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

Socialize your ASP.NET application with OpenSocial

Rate me:
Please Sign up or sign in to vote.
5.00/5 (13 votes)
26 Sep 2012Apache7 min read 31.8K   969   43   6
This article briefly describes what is OpenSocial and how to use it in ASP.NET applications by Catpic

 Download source

Introduction 

 One of the article's goals is introduction of OpenSocial to ASP.NET developers. I hope it can help you to answer the questions like "how I can build my own social network using ASP.NET" or "how to provide the way to extend my ASP.NET site by third-party developers". The second goal is introducing of my custom implementation of OpenSocial specification.

What is OpenSocial?

Image 1

OpenSocial is a specification that defines a browser-based component model, known as gadgets, and an API for accessing information about user profile information and social graphs, including friends and activities. Applications that use the OpenSocial APIs can be embedded within a social network itself, or access a site’s social data from anywhere on the web. [Sources: Wikipedia and Opensocial.org]
Here’s another definition: At it’s most simplified, OpenSocial is able to offer up bits of user interface from one application, while embedding them in another application, exchanging information along with it. [1]

Specification is available here.

Major versions:
  • Version 1.0 - November, 2007 
  • Version 2.0 – August, 2011
OpenSocial 2.0 Features:
Image 2
 

List of existing implementations of opensocial containers can be found here. The most known of them are:

  • Orkut 
  • MySpace
  • Jira 
  • Confluence
  • Jive SBS  

Exisiting opensource implementations

Apache Shindig

Image 3

Apache Shindig is a container for hosting social application consisting of four parts:

  • Gadget Container JavaScript: core JavaScript foundation for general gadget functionality (read more about gadget functionality). This JavaScript manages security, communication, UI layout, and feature extensions, such as the OpenSocial API.
  • Gadget Rendering Server: used to render the gadget XML into JavaScript and HTML for the container to expose via the container JavaScript.
  • OpenSocial Container JavaScript: JavaScript environment that sits on top of the Gadget Container JavaScript and provides OpenSocial specific functionality (profiles, friends, activities, datastore).
  • OpenSocial Data Server: an implementation of the server interface to container-specific information, including the OpenSocial REST APIs, with clear extension points so others can

Apache Shindig is the reference implementation of OpenSocial API specifications, versions 1.0.x and 2.0.x, a standard set of Social Network APIs which includes:

  • Profiles
  • Relationships
  • Activities
  • Shared applications
  • Authentication
  • Authorization
There are two implementation of Shindig available:
  • Java 
  • PHP
Image 4 Image 5

What’s about .NET implementation?

Unfortunately, there are no production ready .NET implementations. See this question at stackoverflow. Briefly, there are few existing implementation and all of the are out of date and cannot be easily integrated into existing ASP.NET applications.

  • Negroni: render engine 
  • Pesta: line by line port of java version of shindig 

How does OpenSocial gadget look like?

OpenSocial Gadgets - simple HTML and JavaScript applications that can be embedded in webpages and other apps. Gadgets are developed using the OpenSocial Gadgets API and basic web technologies such as XML, JavaScript, Flash. Typical gadget can look like the picture below:

Image 6

Description contains various information about gadget, e.g.:

  • Author
  • Title
  • Thumbnail icon
This information can be used by container.

Locale element specifies the locales, or regional language types, supported within the gadget. There may be many Locale nodes within a single gadget if it supports many
international countries and languages.

Require (must include) and Optional (may include if available) elements denote feature dependencies to be made available to a gadget. A Feature is a set of processing instructions and JavaScript libraries that provides some specific functionality for a gadget. Examples:

  • pubsub - allows your gadget to publish and subscribe to message channels
  • rpc - provides operations for making remote procedure calls for gadget-to-container, container-to-gadget, and gadget-to-gadget communication.
  • oauthpopup - manages popup windows for OAuth
  • dynamic-height - gives a gadget the ability to resize itself 

UserPref represents user-specific preferences for gadget

Content section contains the run time portion of the gadget – view. The view consists of HTML, CSS and Javascrip. Different views have different characteristics. For example, a container might have a view that shows gadgets in a small format, and a view that shows gadgets in full page format. There are exmples:

  • default — the standard view of a gadget, displayed in a small box on the page, possibly with other gadgets.
  • canvas — the maximised view of a gadget when displayed by itself on the page. 

OpenSocial gadget examples

Render friends with templating and pipelining 

This example demonstrates how to render friend list using opensocial templating and data pipelining.

XML
<?xml version="1.0" encoding="UTF-8" ?>
<Module>
  <ModulePrefs title="Catpic.Host profile">
    <Require feature="opensocial-templates"/>
    <Require feature="opensocial-1.0"/>
    <Require feature="opensocial-data" />
  </ModulePrefs>
  <Content type="html">
    <![CDATA[
    <style>
      .userProfile {font-size: 16px}
      .friendList{ list-style-type: none; }
      .table tr>td:first-child {font-size: 12px; width:140px; text-transform:uppercase; }
    </style>
    <script type="text/os-data" xmlns:os="http://ns.opensocial.org/2008/markup">
      <os:PeopleRequest key="viewerFriends" userId="@viewer" groupId="@friends" startIndex="10" count="20"/>
    </script>  
    <script type="text/os-template" require="viewerFriends">
        <ul class="friendList">
          <li repeat="${viewerFriends}">   
                <table class="table" width="100%">
                    <tr>
                        <td rowspan="6" width="160px"><img src="${thumbnailUrl}" height="140" width="140" alt="${displayName}"/></td>
                        <td>id</td>
                        <td>${id}</td>
                    </tr>
                    <tr>
                        <td>display name</td>
                        <td>${displayName}</td>
                    </tr>
                    <tr>
                        <td>gender</td>
                        <td>${gender}</td>
                    </tr>
                    <tr>
                        <td>family name</td>
                        <td>${name.familyName}</td>
                    </tr>
                    <tr>
                        <td>given name</td>
                        <td>${name.givenName}</td>
                    </tr>
                    <tr>
                        <td>formatted</td>
                        <td>${name.formatted}</td>
                    </tr>
                </table>  
            <br style="clear:both" />
          </li>
        </ul>
    </script>           
  ]]>
  </Content>
</Module>

The gadget causes the following request and response in browser:

Request

POST http://catpic.apphb.com/gadgets/rpc HTTP/1.1
Host: catpic.apphb.com
Content-Type: application/json
 
[{"method":"people.get","params":{"userId":["@viewer"]{"groupId":"@friends","count":20,"sortBy":"topFriends","filterBy":"all","fields":["id","name","thumbnailUrl","id","displayName"]},"id":"viewerFriends"}]
 
Response
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
 
[{"result":{"startIndex":0,"itemsPerPage":20,"totalResults":3,"filtered":true,"sorted":false,"updatedSince":true,"list":[{"id":"jane.doe","name":{"givenName":"Jane","familyName":"Doe","formatted":"Jane Doe"},"thumbnailUrl":"/Content/Social/Avatars/jane.doe.jpg","displayName":"Janey"},{"id":"george.doe","name":{"givenName":"George","familyName":"Doe","formatted":"George Doe"},"thumbnailUrl":"/Content/Social/Avatars/george.doe.jpg","displayName":"Georgey"},{"id":"maija.m","name":{"givenName":"Maija","familyName":"Meikäläinen","formatted":"Maija Meikäläinen"},"thumbnailUrl":"/Content/Social/Avatars/maija.m.jpg","displayName":"Maija"}]{,"id":"viewerFriends"}] 
The same result can be achieved by REST protocol:
http://catpic.apphb.com/rest/people/@viewer/@friends
Also RPC/REST protocols support paging, sorting and filtration.

Render activities using OSAPI 

This short example demonstrates how to render friend's activities using osapi. 

HTML
<script type="text/javascript">
      function render(templateName, targetName, result ){
         var template = opensocial.template.getTemplate(templateName);
         var target = document.getElementById(targetName);
         template.renderInto(target, result);
      }

      function getActivities(groupId){
        osapi.activities.get({userId:"@viewer", groupId:groupId}).execute(function(result){
           render("gadget:activities","activities", result);
           $('#nav2').animate({left:'60px'}, 500);
        });
     }

     function getCollections(){
       var result = {"list":[{"id":"@self","title":"My activities"},{"id":"@friends","title":"Friend's activities"}]};
       var nav2 = $('#nav2-items');
        nav2.empty();
       $.each(result.list, function(i, val){
             var str = '<div class="nav2-item" collectionid="'+ val.id +'"><span>'+ val.title.toLowerCase() +'</span></div>'
             nav2.append(str);
           });
       $('#nav2-back').click(function(){
               $('#activities').empty();
               renderCollections(result);
        });
       renderCollections(result);
     }

     function renderCollections(result){
         render("gadget:collections", "collections",result);
         $('.msg-collection, .nav2-item').click(function(){
           $('#collections').empty();
               var collectionId = $(this).attr("collectionid");
           getActivities(collectionId);
           });
     }

     gadgets.util.registerOnLoadHandler(getCollections);
   </script>

   <script type="text/os-template"  tag="gadget:collections" xmlns:gadget="http://catpic.apphb.com/social">
     <div>
         <div class="msg-collection" repeat="${list}" collectionid="${Cur.id}">
             <div class="activity-icon">
                 <img src="http://www.codeproject.com/Content/social/avatars/folder.png" />
             </div>
             <div class="msg-collection-title">${Cur.title}</div>
             <div class="msg-collection-total">5 new</div>
         </div>
     </div>
   </script>

   <script type="text/os-template"  tag="gadget:activities" xmlns:gadget="http://catpic.apphb.com/social">
     <div>
         <div class="activity-entry" repeat="${list}" >
               <div class="activity-icon">
                   <img src="http://www.codeproject.com/Content/social/avatars/activity.png" />
                   <div class="activity-user">${Cur.userId}</div>
               </div>
               <div class="activity">
                   <div class="activity-title">${Cur.title}</div>
                   <div class="activity-text">${Cur.body}</div>
                   <div class="activity-streamTitle">${Cur.streamTitle}</div>
                   <div class="activity-date">10 hours ago</div>
               </div>
               <div repeat="${Cur.mediaItems}" var="mediaItem">
                 <div class="activity-image" if="${mediaItem.type == 'image'}">
                   <a href="${mediaItem.url}"><img src="${mediaItem.url}" /></a>
                 </div>
               </div>
               <br style="clear:both" />
         </div>
     </div>
   </script>
   <div id="collections"></div>
   <div id="activities"></div>

  More examples and information are available here.   

Explore opensocial with ASP.NET and Catpic 

Catpic is OpenSocial Container for .NET developers that provides extensible component hosting environment and social facilities to existing .NET applications using best practices. It is OpenSource project which is open for participation. In general, Catpic uses Shindig's client-side code and consists of the following parts:

  • OpenSocial Container: implementation of the public specification that defines a component hosting environment (container) and a set of common application programming interfaces (APIs) for social networking web-based applications
  • Gadget Container JavaScript: core JavaScript foundation for general gadget functionality. This JavaScript manages security, communication, UI layout, and feature extensions. Apache Shindig implementation is used by default.
  • Gadget Rendering Server: used to render the gadget XML into JavaScript and HTML for the container to expose via the container JavaScript. This part is written on .NET and common modules can be replaced/extended by custom ones. 
Catpic provides:
  • OpenSocial container: people, activities, activity streams, messages
  • implementation of core gadgets specification
  • ability to host platform-independed components - gadgets
  • fully .NET implementation on server side
  • extensibility by custom modules
  • simple integration into existing ASP.NET/ ASP.NET MVC application via NuGet package 

Example application 

Create ASP.NET MVC3 application from default template and install catpic using nuget package:
PM> Install-Package Catpic 
After this, application dependency graph should be the following:
Image 7
Some notes:
  • Catpic depends on ASP.NET WebAPI, Json.NET and HtmlAgillitypack libraries
  • EntityFramework library is required by Catpic.Data.EntityFramework library which uses Code First approach of EF to store information into MS SQL Server. You can safely remove it if you want to implement your custom implementation of data layer. Example site uses static json file by default.
  • The easiest way to use catpic is usage of dependency injection containers. Nuget package provides default classes which use Unity as DI container. If you want to use different DI, just provide your implementation of Catpic.Web.Configuration.IHostContainer interface 

The next step is registration of Catpic at Global.asax:

C#
 protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();

    RegisterGlobalFilters(GlobalFilters.Filters);
    RegisterCatpic(); // add this to standard template
    RegisterRoutes(RouteTable.Routes);
}

private void RegisterCatpic()
{
    var container = new Microsoft.Practices.Unity.UnityContainer();
    YourApp.HostConfigurator.Configure(container);

    var unityResolver = new YourApp.UnityDependencyResolver(container);

    DependencyResolver.SetResolver(unityResolver); //mvc 3
    System.Web.Http.GlobalConfiguration.Configuration.DependencyResolver = unityResolver; //webapi rc

    Catpic.Web.Configuration.CatpicConfigurator.ConfigureRoutes(System.Web.Http.GlobalConfiguration.Configuration, RouteTable.Routes);
    Catpic.Web.Configuration.CatpicConfigurator.ConfigureFormatters(System.Web.Http.GlobalConfiguration.Configuration);
}

Add gadget to view 

Open index view of Home controller and add the following content:
 
This example demonstrate how to render gadget using shindig client-side API. Result:
 
Image 8
You can use different approach to render gadgets: just create iframe with src:
http://localhost/gagdets/ifr?url=gadget_url 
Where gadget_url - gadget’s url

Render OpenSocial gadgets

Demo application uses fake repository of shindig: canonicaldb.json file. Currently Catpic provides the implementation of repositories for people, messages, activitystreams services by Catpic.Data.EntityFramework library which contains logic to store social data into MS SQL Service database using Code First approach of EntityFramework.
Here are short examples:

User profile

Image 9

User's friends

Image 10

Catpic demo site

Example above demonstrates only few aspects of catpic implementation of opensocial container. You can checkout Catpic sources and explore more. It is available here:

http://catpic.codeplex.com 

Continuous integration site is located at app harbor: http://catpic.apphb.com. It demonstrates various aspects of Catpic usage. 

Image 11
 

Specification compliance  

What is done from specification point of view:

  • Implemented essential parts of Core Gadget Spec:
    • Features
    • Views
    • Preload (without authz)
    • User preferences
    • Signed requests (OAuth 1.0a / OAuth2)
    • Locale
  • Implemented social services of Social API Server Spec:
    • People
    • Activities (deprecated since opensocial 2.0)
    • Activity Streams
    • Messages
  • RPC/REST protocols are supported

 However, there a lot of work should be done before the full specification is supported. For example:

OpenSocial Books 

Links 

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Software Developer (Senior) Nokia
Germany Germany
Interested in design/development of framework functionality using the best patterns and practices.

Comments and Discussions

 
QuestionIs this project still active? Pin
JoAnn Peeler14-May-13 5:26
JoAnn Peeler14-May-13 5:26 
AnswerRe: Is this project still active? Pin
Ilya Builuk17-May-13 2:59
Ilya Builuk17-May-13 2:59 
QuestionNice Article Pin
Gajendra Yadav20-Sep-12 4:01
Gajendra Yadav20-Sep-12 4:01 
GeneralMy vote of 5 Pin
Patrick Harris19-Sep-12 17:56
Patrick Harris19-Sep-12 17:56 
GeneralMy vote of 5 Pin
Kanasz Robert19-Sep-12 4:30
professionalKanasz Robert19-Sep-12 4:30 
Good job. You've got my 5

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.