Click here to Skip to main content
15,880,651 members
Articles / Web Development / ASP.NET

LightSwitch HTML Picture Manager Using WCF RIA Services

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
18 Apr 2013CPOL4 min read 22.9K   5   3
This is a Visual Studio LightSwitch HTML Picture File Manager that uses WCF RIA Services to upload and view files on the web server.

image

Note: Try the LIVE sample at https://pictureuploader.lightswitchhelpwebsite.com/htmlclient/ (use your LightSwitchHelpWebsite.com user name and password for access).

Introduction

This article describes a Visual Studio LightSwitch HTML Picture File Manager that uses WCF RIA Services to upload and view files on the web server. Using WCF RIA Services allows the application to provide fast performance by using thumbnails stored on the server hard drive when displaying lists, and the full original image when the user selects it. WCF RIA Services allow the code to be clear and easy to understand because it exposes entities that appear as normal tables, yet it is saving and reading pictures from the hard drive.

image

This example starts with the application created in Full Control LightSwitch (ServerApplicationContext And Generic File Handlers And Ajax Calls).

In this application, you can search users and picture names (see Server Side Search using the LightSwitch HTML Client for a tutorial on create search screens).

image

Users can select Edit My Account to update their profile and upload pictures.

image

On the Profile Page, only the user’s own photos are displayed. A user can click on a photo to edit its title.

A user can select Add User Picture to upload photos.

image

When a photo is uploaded, it will display in a preview.

image

Business rules allow a user to only upload 5 pictures.

The Project

image

The LightSwitch project is a normal LightSwitch HTML project with a WCF RIA Service. The WCF RIA Service saves  the images to the server hard drive and reads the images from the server hard drive. It exposes two entities, UserPictures and BigPictures. Both entities look at the same files on the server hard drive. The reason there are two, is that BigPictures is used when we want to display the original image. UserPictures is used when we want to display the image thumbnails (this provides faster performance when viewing a list of pictures).

Displaying Pictures

image

If we look at the Main screen, we see that UserPictures is bound to the Tile List control, and the GetBigPicture entity is in a Popup (that is opened when you click on a picture).

The WCF RIA Service has definitions for the two entities:

C#
   public class UserPicture
{
    [Key]
    public int Id { get; set; }
    public string UserName { get; set; }
    public string PictureName { get; set; }
    public string ActualFileName { get; set; }
    public byte[] FileImage { get; set; }
}

public class BigPicture
{
    [Key]
    public int Id { get; set; }
    public string ActualFileName { get; set; }
    public byte[] FileImage { get; set; }
}

To retrieve the photos, the code below is used. Notice how it is actually getting all of its data from the Picture table (this is a normal SQL table) and simply replacing the FileImage property with the contents of the file (in this case, the thumbnail image) on the hard drive:

C#
#region GetPictures
[Query(IsDefault = true)]
public IQueryable<UserPicture> GetPictures()
{
    var colUserPictures = new List<UserPicture>();

    colUserPictures = (from Pictures in this.Context.Pictures
                       select new UserPicture
                       {
                           Id = Pictures.Id,
                           UserName = Pictures.UserName,
                           PictureName = Pictures.PictureName,
                           ActualFileName = Pictures.ActualFileName,
                       }).ToList();

    // Add the Pictures to the collection
    foreach (var Picture in colUserPictures)
    {
        try
        {
            // Load Image thumbnail
            string strThumbnailFile =
                String.Format("{0}_thumb{1}",
                Path.GetFileNameWithoutExtension(Picture.ActualFileName),
                Path.GetExtension(Picture.ActualFileName));

            string strPath = string.Format(@"{0}\{1}",
                GetFileDirectory(), strThumbnailFile);
            FileStream sourceFile = new FileStream(strPath, FileMode.Open);
            long FileSize;
            FileSize = sourceFile.Length;
            byte[] getContent = new byte[(int)FileSize];
            sourceFile.Read(getContent, 0, (int)sourceFile.Length);
            sourceFile.Close();

            Picture.FileImage = getContent;
        }
        catch
        {
            // Do nothing if image not found
        }
    }

    return colUserPictures.AsQueryable();
}
#endregion

When retrieving a single large picture, the following method is used:

C#
#region GetBigPicture
public BigPicture GetBigPicture(int? Id)
{
    var objPicture = new BigPicture();

    if (Id != null)
    {
        objPicture = (from Pictures in this.Context.Pictures
                      where Pictures.Id == Id
                      select new BigPicture
                      {
                          Id = Pictures.Id,
                          ActualFileName = Pictures.ActualFileName,
                      }).FirstOrDefault();

        // Add the Pictures to the collection
        if (objPicture != null)
        {
            try
            {
                string strPath = string.Format(@"{0}\{1}",
                    GetFileDirectory(), objPicture.ActualFileName);
                FileStream sourceFile = new FileStream(strPath, FileMode.Open);
                long FileSize;
                FileSize = sourceFile.Length;
                byte[] getContent = new byte[(int)FileSize];
                sourceFile.Read(getContent, 0, (int)sourceFile.Length);
                sourceFile.Close();

                objPicture.FileImage = getContent;
            }
            catch
            {
                // Do nothing if image not found
            }
        }
    }

    return objPicture;
}
#endregion

Deleting Pictures

image

A user can edit their own pictures. When they do, they have an option to delete the picture (this will also delete the original picture and the image thumbnail from the server hard drive).

image

In the screen designer, we can see the Delete button.

The JavaScript code for the Delete button is actually quite simple and is exactly the same as would be used if we were not calling a WCF RIA Service:

JavaScript
myapp.EditPicture.Delete_execute = function (screen) {
    // Delete the current picture record
    screen.UserPicture.deleteEntity();
    // Save the changes
    return myapp.commitChanges().then(null, function fail(e) {
        // There was an error -- cancel changes
        myapp.cancelChanges();
        // Throw the error so it will display
        // to the user
        throw e;
    });
};

The underlying WCF RIA Service method is called:

C#
#region DeleteFile
public void DeleteFile(UserPicture objFileRecord)
{
    string strCurrentUserName = GetCurrentUserName();
    // This picture must belong to the person deleting it
    if (strCurrentUserName == objFileRecord.UserName)
    {
        // Delete file
        try
        {
            string strFileDirectory = GetFileDirectory();
            string strFileName = objFileRecord.ActualFileName;

            string strThumbnailFile =
                String.Format(@"{0}_thumb{1}",
                Path.GetFileNameWithoutExtension(strFileName),
                Path.GetExtension(strFileName));

            // Delete the thumbnail and the picture
            File.Delete(Path.Combine(strFileDirectory, strThumbnailFile));
            File.Delete(Path.Combine(strFileDirectory, objFileRecord.ActualFileName));
        }
        catch
        {
            // Do nothing if file does not delete
        }

        // Get database picture record
        var objPicture = (from Pictures in this.Context.Pictures
                          where Pictures.Id == objFileRecord.Id
                          where Pictures.UserName == strCurrentUserName
                          select Pictures).FirstOrDefault();

        if (objPicture != null)
        {
            // Delete database picture record
            this.Context.Pictures.DeleteObject(objPicture);
            this.Context.SaveChanges();
        }
    }
}
#endregion

Uploading Pictures

image

To upload pictures, we borrow code from the LightSwitch HTML Client Tutorial - Contoso Moving tutorial (you can see a walk-through at this link). The main difference between that example and this one, is that in the Contoso example, the pictures are stored in the database rather than the hard drive.

image

The layout for the Add Picture screen is simple. It contains the UserPicture entity with the FileImage property bound to a Custom Control.

The following code is used to render the contents of the Custom Control:

JavaScript
myapp.AddPicture.FileImage_render = function (element, contentItem) {
    // Create the Image Uploader
    createImageUploader(element, contentItem, "max-width: 300px; max-height: 300px");
};

The underlying WCF RIA Service method is called:

C#
#region InsertFile
public void InsertFile(UserPicture objFileRecord)
{
    // Get current user
    string strCurrentUserName = GetCurrentUserName();

    // The file name will be prepended with the userName
    string strActualFileName = String.Format("{0}_{1}.png",
        strCurrentUserName, DateTime.Now.Ticks.ToString());

    // Create a Picture object
    Picture objPicture = this.Context.CreateObject<Picture>();
    // Ste values
    objPicture.ActualFileName = strActualFileName;
    objPicture.PictureName = objFileRecord.PictureName;
    // User can only Insert a picture under their identity
    objPicture.UserName = strCurrentUserName;

    // Get the local directory
    string strFileDirectory = GetFileDirectory();
    EnsureDirectory(new System.IO.DirectoryInfo(strFileDirectory));

    // Set a value for the file path
    string filePath = Path.Combine(strFileDirectory, strActualFileName);

    // Convert file to stream
    using (Stream FileImageStream =
        new MemoryStream(objFileRecord.FileImage))
    {
        FileInfo fi = new FileInfo(filePath);

        // If file exists - delete it
        if (fi.Exists)
        {
            try
            {
                fi.Delete();
            }
            catch
            {
                // could not delete
            }
        }

        using (FileStream fs = File.Create(filePath))
        {
            // Save the file
            SaveFile(FileImageStream, fs);
            fs.Close();
        }

        // Make a thumbnail of the file
        MakeThumbnail(filePath);
    }

    // Update LightSwitch Database
    this.Context.Pictures.AddObject(objPicture);
    this.Context.SaveChanges(
        System.Data.Objects.SaveOptions.DetectChangesBeforeSave);

    // Set the objFileRecord.Id to the ID that was inserted
    // In the Picture table
    objFileRecord.Id = objPicture.Id;
    // Set Actual File Name
    objFileRecord.ActualFileName = strActualFileName;
}
#endregion

Business Rules

image

To implement the business rule that a user can only upload 5 pictures, we open the UserPicture entity, and select the UserPictures_Inserting method.

We use the following code for the method:

C#
partial void UserPictures_Inserting(UserPicture entity)
{
 string strCurrentUser = this.Application.User.Identity.Name;

 // Only allow each user to insert 5 pictures
 if (this.DataWorkspace.ApplicationData.Pictures
     .Where(x => x.UserName == strCurrentUser).Count() > 4)
 {
     throw new Exception(string.Format("{0} can only add 5 pictures.", entity.UserName));
 }
 else
 {
     // The UserName is set to the person who is logged in
     entity.UserName = this.Application.User.Identity.Name;
 }
}

A Powerful Framework

WCF RIA Services allow us to create complex functionality and expose it as entities. This allow us to write the JavaScript layer using relatively straightforward code. 

Special Thanks

A special thanks to Stephen Provine and Matt Evans for their valuable assistance. 

LightSwitch Help Website Articles

LightSwitch Team HTML and JavaScript Articles

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) http://ADefWebserver.com
United States United States
Michael Washington is a Microsoft MVP. He is a ASP.NET and
C# programmer.
He is the founder of
AiHelpWebsite.com,
LightSwitchHelpWebsite.com, and
HoloLensHelpWebsite.com.

He has a son, Zachary and resides in Los Angeles with his wife Valerie.

He is the Author of:

Comments and Discussions

 
QuestionWhat is LightSwitch Pin
Tridip Bhattacharjee19-Apr-13 4:33
professionalTridip Bhattacharjee19-Apr-13 4:33 
AnswerRe: What is LightSwitch Pin
defwebserver19-Apr-13 17:58
defwebserver19-Apr-13 17:58 
GeneralRe: What is LightSwitch Pin
Tridip Bhattacharjee20-Apr-13 7:17
professionalTridip Bhattacharjee20-Apr-13 7:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.