A Web App for Identity Search - part 3

Posted on Wednesday, June 03, 2009 by Anuj Mehta

Now for parsing the response obtained from the LinkedIn ruby gem we need to have a good understanding of microformats.

Microformats

Microformats are set of simple, open data formats built upon existing standards for markup and data. They add structure and semantics to web publishing by adding metadata and other attributes to existing (X) HTML elements. There are several types of Microformats like rel-home, rel-tag, rel-me, XFN, hCard, hCalendar, hResume etc. LinkedIn stores all the profiles in hResume format hence we will focus on it.

hResume
hResume is a microformat for publishing resume’s and CV’s. It is a compound microformat as it utilizes 3 other microformats: rel-tag, hCard and hCalendar. Below is the structure of hResume and its subordinate microformats.





In our case hCard is used for representing contact information of a person while the hCalendar is generally used for representing event information. In our case hCalendar is used for representing educational background and the professional experience information. Like for ex for educational background the ‘summary’ can be something like brief details of the course while the start and end will have start and end date of the course. Below is the code snippet for retrieving information from hResume


  1. first_name = params[:first_name]  
  2. @title = "Details of " + first_name  
  3. last_name = params[:last_name]  
  4. org = params[:org]  
  5. locality = params[:locality]  
  6. @linkedin = Linkedin.new  
  7. people = @linkedin.find({:given_name => first_name, :family_name => last_name,  
  8.     :org => org, :locality => locality})  
  9.   
  10. @people_array = Array.new  
  11. people.each { |p|  
  12.     person_obj = Person.new  
  13.     person_obj.summary = p.summary if p.properties.include?(SUMMARY)  
  14.     person_obj.skills = p.skills if p.properties.include?(SKILLS)  
  15.   
  16.   if p.contact.properties.include?(URL)  
  17.     person_obj.init_snapshot_url_hash  
  18.     et = EasyThumb.new('ed65ca5fb868192ce9837456c8908bca''4201')  
  19.     if p.contact.url.kind_of?(Array)  
  20.       p.contact.url.each { |site_name|  
  21.         temp_url = et.build_url(:url => site_name , :size => :medium2:cache => 1)  
  22.         person_obj.add_url_to_snapshot_hash(site_name, temp_url)  
  23.       }  
  24.     else  
  25.       site_name = p.contact.url  
  26.       temp_url = et.build_url(:url => site_name , :size => :medium2:cache => 1)  
  27.       person_obj.add_url_to_snapshot_hash(site_name, temp_url)  
  28.     end  
  29.   end  
  30.   
  31.     if p.education.kind_of?(Array)  
  32.         person_obj.init_edu_obj_arry  
  33.         p.education.each { |klass|  
  34.           temp_edu_obj = Person::Education.new  
  35.           temp_edu_obj.summary = klass.summary unless klass.summary.nil?  
  36.   
  37.         if klass.dtstart.kind_of?(String)  
  38.             temp_edu_obj.start_year = klass.dtstart  
  39.           elsif klass.dtstart.kind_of?(Time)  
  40.             temp_edu_obj.start_year = klass.dtstart.year  
  41.           end  
  42.   
  43.         if klass.dtend.kind_of?(String)  
  44.             temp_edu_obj.end_year = klass.dtend  
  45.           elsif klass.dtend.kind_of?(Time)  
  46.             temp_edu_obj.end_year = klass.dtend.year  
  47.           end  
  48.           person_obj.add_element_to_edu_obj_array(temp_edu_obj)  
  49.         }  
  50.       else  
  51.         person_obj.init_edu_obj  
  52.         person_obj.set_edu_summary p.education.summary unless p.education.summary.nil?  
  53.         person_obj.set_edu_start_year p.education.dtstart.year unless p.education.dtstart.nil?  
  54.         person_obj.set_edu_end_year p.education.dtend.year unless p.education.dtend.nil?  
  55.       end if p.properties.include?(EDUCATION)  
  56.   
  57.   if p.experience.kind_of?(Array)  
  58.       person_obj.init_exp_obj_array  
  59.       p.experience.each { |exp|  
  60.         temp_exp_obj = Person::Experience.new  
  61.         temp_exp_obj.description = exp.description unless exp.description.nil?  
  62.         temp_exp_obj.summary = exp.summary unless exp.summary.nil?  
  63.   
  64.         if exp.dtstart.kind_of?(Time)  
  65.           temp_exp_obj.start_year = exp.dtstart.year  
  66.         elsif exp.dtstart.kind_of?(String)  
  67.           temp_exp_obj.start_year = exp.dtstart  
  68.         end  
  69.   
  70.         if exp.dtend.kind_of?(Time)  
  71.           temp_exp_obj.end_year = exp.dtend.year  
  72.         elsif exp.dtend.kind_of?(String)  
  73.           temp_exp_obj.end_year = exp.dtend  
  74.         end  
  75.   
  76.         person_obj.add_element_to_exp_obj_array(temp_exp_obj)  
  77.       }  
  78.     elsif p.experience.kind_of?(hCalendar)  
  79.       person_obj.init_exp_obj  
  80.       person_obj.set_exp_summary = p.experience.summary unless p.experience.nil?  
  81.       person_obj.set_exp_description = p.experience.description unless p.experience.nil?  
  82.   
  83.       if p.experience.dtstart.kind_of?(Time)  
  84.         person_obj.set_exp_start_year = p.experience.dtstart.year  
  85.       elsif p.experience.dtstart.kind_of?(String)  
  86.         person_obj.set_exp_start_year = p.experience.dtstart  
  87.       end  
  88.   
  89.       if p.experience.dtend.kind_of?(Time)  
  90.         person_obj.set_exp_end_year = p.experience.dtend.year  
  91.       elsif p.experience.dtend.kind_of?(String)  
  92.         person_obj.set_exp_end_year = p.experience.dtend  
  93.       end  
  94.     end if p.properties.include?(EXPERIENCE)  
  95.     @people_array << person_obj  
  96.   } if people.kind_of?(Array)  


Getting the current snapshot of website dynamically

The application shows the current snapshot of the website’s of the person in question so that user can glance over the information and if he interested he can click on the snapshot which will take them to that website. For getting this snapshot we had used the WebThumb Web Service.

Limitations

1. The application is highly dependent on one site i.e. LinkedIn which is not correct. In future I plan to search from other social networking sites. For which we can use Open Social API which provides a common API for accessing a number of social networking sites.
2. There is a lot of scope in improving the GUI. It can be made Rich.

References
• http://en.wikipedia.org/wiki/Semantic_Web
• Introduction to Semantic Web http://www.w3.org/2008/Talks/0924-Vienna-IH/Slides.pdf
• Microformats http://microformats.org/
• Getting semantic with microformats http://www.ablognotlimited.com/articles/getting-semantic-with-microformats-introduction/
• Yahoo BOSS API http://developer.yahoo.com/search/boss/
• WebThumb http://webthumb.bluga.net/home
• Writing a LinkedIn API library using Yahoo! BOSS web search http://developer.yahoo.net/blog/archives/2008/10/boss_is_the_gre.html
• Open Social http://www.opensocial.org/


Related Post
Part1
Part2

0 Responses to "A Web App for Identity Search - part 3":