メモ代わり。てきとーに。 いや、ですからてきとーですって。 2年前ぐらいにPythonあたりでメールくれた方、ごめんなさい。メール紛失してしまい無視した形になってしまいました。。。

2009年7月18日土曜日

[Apache Shindig][お勉強][OpenSocial] メモ58 DataRequest.newFetchPeopleRequestのサーバ側実装(1)

多分、newFetchPeopleRequestが発行されると、
JSON-RPCでpeople.getがリクエストされるんじゃないかと。

それはどうでも良いとして、サーバ側は、


org.apache.shindig.social.opensocial.spi.PersonService


を実装したクラスのgetPeopleメソッドがコールされる。

このgetPeopleのシグネチャは以下。
  1. Future<RestfulCollection<Person>> getPeople(Set<userid> userIds, GroupId groupId,  
  2.       CollectionOptions collectionOptions, Set<String> fields, SecurityToken token)  
  3.       throws ProtocolException;  
  4. </userid>  


うへー。

UserIdは"VIEWER"、"OWNER"とか。
GroupIdは、"FRIENDS"とか"ALL"とか"SELF"とかが設定されている。
fieldsはnewFetchPeopleRequestの第二引数で指定した、

opensocial.DataRequest.PeopleRequestFields.PROFILE_DETAILS

の対応する値がセットされている。

tokenはiframeにセットしたstパラメータの値に対応するSecurityTokenオブジェクト。

collectionOptionsというのは、、、不明
* どの項目でソートするかより親しい友達順(topFriends)か名前順(name)か。
* ソートの順序(昇順か降順か)
* フィルター、
* 最大件数、
* 最初に表示するデータのインデックス、
* updatedSince
というのが入ってくる模様。
多分、PersonServiceをコールするPersonHandlerを見れば分かると思う。

ということで見てみようっと。

--
というか、newFetchPeopleRequestを
  1. idSpecParam[opensocial.IdSpec.Field.GROUP_ID] = opensocial.IdSpec.PersonId.FRIENDS;   

でコールしたのに、サーバ側には、GroupIdに"SELF"が設定されている!

なんで??

--
  1. idSpecParam[opensocial.IdSpec.Field.GROUP_ID] = opensocial.IdSpec.GroupId.FRIENDS;   

が正解。

.

[Apache Shindig][お勉強][OpenSocial] メモ57 DataRequest.newFetchPeopleRequest(友達版)

友達一覧を取得するには、

DataRequest.newFetchPeopleRequest()

を使うみたい。

さて、このリクエストのサーバ側の処理は、
newFetchPersonRequestで触ったPersonService.getPeople()
らしい。

とりあえずは、ガジェットを書いてみる。
newFetchPersonRequestの第一引数はidSpec。
第二引数は、要求に渡すパラメータ。
だそうで。

idSpecはidSpecオブジェクト。
要求に渡すパラメータというのは、意味不明。
要求に渡すといわれても、さっぱりわからないので、サンプルを見る。

で、例によって、gooのディベロッパーキッチンをみて、書いてみた。

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <Module>  
  3.   <ModulePrefs title="友達一覧取得">  
  4.     <Require feature="opensocial-0.8" />  
  5.     <Require feature="dynamic-height" />  
  6.   </ModulePrefs>  
  7.   <Content type="html" view="home,profile,canvas"><![CDATA[ 
  8.     <div id='friends_list'></div> 
  9. <script type="text/javascript"> 
  10.  
  11.   function requestGetOwnerProfile() { 
  12.     var params = {}; 
  13.     params[opensocial.DataRequest.PeopleRequestFields.PROFILE_DETAILS] = [ 
  14.       opensocial.Person.Field.ID, 
  15.       opensocial.Person.Field.NICKNAME, 
  16.       opensocial.Person.Field.THUMBNAIL_URL, 
  17.       opensocial.Person.Field.PROFILE_URL 
  18.     ]; 
  19.     var req = opensocial.newDataRequest(); 
  20.     var idSpecParam = {}; 
  21.     idSpecParam[opensocial.IdSpec.Field.USER_ID]  = opensocial.IdSpec.PersonId.OWNER; 
  22.     idSpecParam[opensocial.IdSpec.Field.GROUP_ID] = opensocial.IdSpec.PersonId.FRIENDS; 
  23.     var idSpec = opensocial.newIdSpec(idSpecParam); 
  24.  
  25.     req.add(req.newFetchPeopleRequest(idSpec, params), "get_friends"); 
  26.     req.send(handleRequestGetFriendsProfile); 
  27.   }; 
  28.  
  29.   function handleRequestGetFriendsProfile(data) { 
  30.     var friends = data.get("get_friends"); 
  31.     if (friends.hadError()) { 
  32.       //Handle error using viewer.getError()... 
  33.       document.getElementById('friends_list').innerHTML = 'エラーだよーん'; 
  34.       return; 
  35.     } 
  36.     var data = friends.getData(); 
  37.     var out = document.createElement('ul'); 
  38.     data.each(function(friend) { 
  39.       var li = document.createElement('li'); 
  40.       var thumbnailUrl = friend.getField(opensocial.Person.Field.THUMBNAIL_URL); 
  41.       li.innerHTML = '<img src="'+thumbnailUrl+'" />'+friend.getNickname(); 
  42.       out.appendChild(li); 
  43.     }); 
  44.     docuemnt.getElementById('friends_list').appendChild(out); 
  45.  
  46.     // 自動調節 
  47.     gadgets.window.adjustHeight(); 
  48.   }; 
  49.  
  50.   gadgets.util.registerOnLoadHandler(requestGetOwnerProfile); 
  51.  
  52. </script> 
  53.   ]]>  
  54.   </Content>  
  55. </Module>  


多分、こんな感じでよいんだろうけど、
エラーだよーんって表示される。

My Shindig環境ではまだサーバ側を実装していないので、
動かない。(java.lang.UnsupportedOperationExceptionが投げられてる。)

サーバ側実装はこれから。

.

[Apache Shindig][お勉強][OpenSocial] メモ56

とりあえず、
パーミッション判定、container.jsのsupportedFieldに対応した、
newFetchPersonRequestのサーバ側処理ができた。

さて、次は、、と。
友達一覧とかがほしいかも。

.

[Apache Shindig][お勉強][OpenSocial] メモ55 supportsFieldしながら全項目出力するガジェット

Personオブジェクトの全項目を、いちいちsupportsFieldしながら出力するうんこみたいなガジェット。

  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <Module>  
  3.   <ModulePrefs title="OWNER全情報取得">  
  4.     <Require feature="opensocial-0.8" />  
  5.     <Require feature="dynamic-height" />  
  6.   </ModulePrefs>  
  7.   <Content type="html" view="home,profile,canvas"><![CDATA[  
  8.     <div id='owner_profile'></div>  
  9. <script type="text/javascript">  
  10.   
  11.   function requestGetOwnerProfile() {  
  12.     var params = {};  
  13.     params[opensocial.DataRequest.PeopleRequestFields.PROFILE_DETAILS] = [  
  14.       opensocial.Person.Field.ID,  
  15.       opensocial.Person.Field.NAME,  
  16.       opensocial.Person.Field.NICKNAME,  
  17.       opensocial.Person.Field.THUMBNAIL_URL,  
  18.       opensocial.Person.Field.PROFILE_URL,  
  19.       opensocial.Person.Field.CURRENT_LOCATION,  
  20.       opensocial.Person.Field.ADDRESSES,  
  21.       opensocial.Person.Field.EMAILS,  
  22.       opensocial.Person.Field.PHONE_NUMBERS,  
  23.       opensocial.Person.Field.ABOUT_ME,  
  24.       opensocial.Person.Field.STATUS,  
  25.       opensocial.Person.Field.PROFILE_SONG,  
  26.       opensocial.Person.Field.PROFILE_VIDEO,  
  27.       opensocial.Person.Field.GENDER,  
  28.       opensocial.Person.Field.SEXUAL_ORIENTATION,  
  29.       opensocial.Person.Field.RELATIONSHIP_STATUS,  
  30.       opensocial.Person.Field.AGE,  
  31.       opensocial.Person.Field.DATE_OF_BIRTH,  
  32.       opensocial.Person.Field.BODY_TYPE,  
  33.       opensocial.Person.Field.ETHNICITY,  
  34.       opensocial.Person.Field.SMOKER,  
  35.       opensocial.Person.Field.DRINKER,  
  36.       opensocial.Person.Field.CHILDREN,  
  37.       opensocial.Person.Field.PETS,  
  38.       opensocial.Person.Field.LIVING_ARRANGEMENT,  
  39.       opensocial.Person.Field.TIME_ZONE,  
  40.       opensocial.Person.Field.LANGUAGES_SPOKEN,  
  41.       opensocial.Person.Field.JOBS,  
  42.       opensocial.Person.Field.JOB_INTERESTS,  
  43.       opensocial.Person.Field.SCHOOLS,  
  44.       opensocial.Person.Field.INTERESTS,  
  45.       opensocial.Person.Field.URLS,  
  46.       opensocial.Person.Field.MUSIC,  
  47.       opensocial.Person.Field.MOVIES,  
  48.       opensocial.Person.Field.TV_SHOWS,  
  49.       opensocial.Person.Field.BOOKS,  
  50.       opensocial.Person.Field.ACTIVITIES,  
  51.       opensocial.Person.Field.SPORTS,  
  52.       opensocial.Person.Field.HEROES,  
  53.       opensocial.Person.Field.QUOTES,  
  54.       opensocial.Person.Field.CARS,  
  55.       opensocial.Person.Field.FOOD,  
  56.       opensocial.Person.Field.TURN_ONS,  
  57.       opensocial.Person.Field.TURN_OFFS,  
  58.       opensocial.Person.Field.TAGS,  
  59.       opensocial.Person.Field.ROMANCE,  
  60.       opensocial.Person.Field.SCARED_OF,  
  61.       opensocial.Person.Field.HAPPIEST_WHEN,  
  62.       opensocial.Person.Field.FASHION,  
  63.       opensocial.Person.Field.HUMOR,  
  64.       opensocial.Person.Field.LOOKING_FOR,  
  65.       opensocial.Person.Field.RELIGION,  
  66.       opensocial.Person.Field.POLITICAL_VIEWS,  
  67.       opensocial.Person.Field.HAS_APP,  
  68.       opensocial.Person.Field.NETWORK_PRESENCE  
  69.     ];  
  70.     var req = opensocial.newDataRequest();  
  71.     req.add(req.newFetchPersonRequest(  
  72.               opensocial.IdSpec.PersonId.OWNER,  
  73.               params),  
  74.             "get_owner");  
  75.     req.send(handleRequestGetOwnerProfile);  
  76.   };  
  77.   
  78.   function handleRequestGetOwnerProfile(data) {  
  79.     var owner = data.get("get_owner");  
  80.     if (owner.hadError()) {  
  81.       //Handle error using viewer.getError()...  
  82.       document.getElementById('owner_profile').innerHTML = 'エラーだよーん';  
  83.       return;  
  84.     }  
  85.     var data = owner.getData();  
  86.     var html = 'displayName:' + data.getDisplayName() + '  
  87. ';  
  88.     var env = opensocial.getEnvironment();  
  89.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.ID)) {  
  90.       var id = data.getField(opensocial.Person.Field.ID);  
  91.       var idHtml = '<h2>opensocial.Person.Field.ID</h2>  
  92. ';  
  93.       if (id) {  
  94.         idHtml = idHtml + id + '  
  95. ';  
  96.       }  
  97.       else {  
  98.         idHtml = idHtml + 'UNDEFINED  
  99. ';  
  100.       }  
  101.       document.getElementById('view_ID').innerHTML = idHtml;  
  102.     }  
  103.     // Name  
  104.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.NAME)) {  
  105.       var name = data.getField(opensocial.Person.Field.NAME);  
  106.       var nameHtml = '<h2>opensocial.Person.Field.NAME</h2>  
  107. ';  
  108.       if (name) {  
  109.         if (env.supportsField(opensocial.Environment.ObjectType.NAME, opensocial.Name.Field.ADDITIONAL_NAME)) {  
  110.           nameHtml = nameHtml + '<h3>opensocial.Name.Field.ADDITIONAL_NAME</h3>  
  111. ';  
  112.           nameHtml = nameHtml + name.getField(opensocial.Name.Field.ADDITIONAL_NAME) + '  
  113. ';  
  114.         }  
  115.         if (env.supportsField(opensocial.Environment.ObjectType.NAME, opensocial.Name.Field.FAMILY_NAME)) {  
  116.           nameHtml = nameHtml + '<h3>opensocial.Name.Field.FAMILY_NAME</h3>  
  117. ';  
  118.           nameHtml = nameHtml + name.getField(opensocial.Name.Field.FAMILY_NAME) + '  
  119. ';  
  120.         }  
  121.         if (env.supportsField(opensocial.Environment.ObjectType.NAME, opensocial.Name.Field.GIVEN_NAME)) {  
  122.           nameHtml = nameHtml + '<h3>opensocial.Name.Field.GIVEN_NAME</h3>  
  123. ';  
  124.           nameHtml = nameHtml + name.getField(opensocial.Name.Field.GIVEN_NAME) + '  
  125. ';  
  126.         }  
  127.         if (env.supportsField(opensocial.Environment.ObjectType.NAME, opensocial.Name.Field.HONORIFIC_PREFIX)) {  
  128.           nameHtml = nameHtml + '<h3>opensocial.Name.Field.HONORIFIC_PREFIX</h3>  
  129. ';  
  130.           nameHtml = nameHtml + name.getField(opensocial.Name.Field.HONORIFIC_PREFIX) + '  
  131. ';  
  132.         }  
  133.         if (env.supportsField(opensocial.Environment.ObjectType.NAME, opensocial.Name.Field.HONORIFIC_SUFFIX)) {  
  134.           nameHtml = nameHtml + '<h3>opensocial.Name.Field.HONORIFIC_SUFFIX</h3>  
  135. ';  
  136.           nameHtml = nameHtml + name.getField(opensocial.Name.Field.HONORIFIC_SUFFIX) + '  
  137. ';  
  138.         }  
  139.         if (env.supportsField(opensocial.Environment.ObjectType.NAME, opensocial.Name.Field.UNSTRUCTURED)) {  
  140.           nameHtml = nameHtml + '<h3>opensocial.Name.Field.UNSTRUCTURED</h3>  
  141. ';  
  142.           nameHtml = nameHtml + name.getField(opensocial.Name.Field.UNSTRUCTURED) + '  
  143. ';  
  144.         }  
  145.       }  
  146.       else {  
  147.         nameHtml = nameHtml + 'UNDEFINED  
  148. ';  
  149.       }  
  150.       document.getElementById('view_NAME').innerHTML = nameHtml;  
  151.     }  
  152.     else {  
  153.       document.getElementById('view_NAME').innerHTML = '未対応';  
  154.     }  
  155.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.NICKNAME)) {  
  156.       var nickname = data.getField(opensocial.Person.Field.NICKNAME);  
  157.       var nicknameHtml = '<h2>opensocial.Person.Field.NICKNAME</h2>  
  158. ';  
  159.       if (nickname) {  
  160.         nicknameHtml = nicknameHtml + nickname + '  
  161. ';  
  162.       }  
  163.       else {  
  164.         nicknameHtml = nicknameHtml + 'UNDEFINED  
  165. ';  
  166.       }  
  167.       document.getElementById('view_NICKNAME').innerHTML = nicknameHtml;  
  168.     }  
  169.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.THUMBNAIL_URL)) {  
  170.       var thumbnailUrl = data.getField(opensocial.Person.Field.THUMBNAIL_URL);  
  171.       var thumbnailUrlHtml = '<h2>opensocial.Person.Field.THUMBNAIL_URL</h2>  
  172. ';  
  173.       if (thumbnailUrl) {  
  174.         thumbnailUrlHtml = thumbnailUrlHtml + thumbnailUrl + '  
  175. ';  
  176.       }  
  177.       else {  
  178.         thumbnailUrlHtml = thumbnailUrlHtml + 'UNDEFINED  
  179. ';  
  180.       }  
  181.       document.getElementById('view_THUMBNAIL_URL').innerHTML = thumbnailUrlHtml;  
  182.     }  
  183.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.PROFILE_URL)) {  
  184.       var profileUrl = data.getField(opensocial.Person.Field.PROFILE_URL);  
  185.       var profileUrlHtml = '<h2>opensocial.Person.Field.PROFILE_URL</h2>  
  186. ';  
  187.       if (profileUrl) {  
  188.         profileUrlHtml = profileUrlHtml + profileUrl + '  
  189. ';  
  190.       }  
  191.       else {  
  192.         profileUrlHtml = profileUrlHtml + 'UNDEFINED  
  193. ';  
  194.       }  
  195.       document.getElementById('view_PROFILE_URL').innerHTML = profileUrlHtml;  
  196.     }  
  197.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.CURRENT_LOCATION)) {  
  198.       var currentLocation = data.getField(opensocial.Person.Field.CURRENT_LOCATION);  
  199.       var currentLocationHtml = '<h2>opensocial.Person.Field.CURRENT_LOCATION</h2>  
  200. ';  
  201.       if (currentLocation) {  
  202.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.COUNTRY)) {  
  203.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.COUNTRY</h3>  
  204. ';  
  205.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.COUNTRY) + '  
  206. ';  
  207.         }  
  208.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.EXTENDED_ADDRESS)) {  
  209.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.EXTENDED_ADDRESS</h3>  
  210. ';  
  211.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.EXTENDED_ADDRESS) + '  
  212. ';  
  213.         }  
  214.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LATITUDE)) {  
  215.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.LATITUDE</h3>  
  216. ';  
  217.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.LATITUDE) + '  
  218. ';  
  219.         }  
  220.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LOCALITY)) {  
  221.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.LOCALITY</h3>  
  222. ';  
  223.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.LOCALITY) + '  
  224. ';  
  225.         }  
  226.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LONGITUDE)) {  
  227.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.LONGITUDE</h3>  
  228. ';  
  229.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.LONGITUDE) + '  
  230. ';  
  231.         }  
  232.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.PO_BOX)) {  
  233.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.PO_BOX</h3>  
  234. ';  
  235.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.PO_BOX) + '  
  236. ';  
  237.         }  
  238.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.POSTAL_CODE)) {  
  239.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.POSTAL_CODE</h3>  
  240. ';  
  241.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.POSTAL_CODE) + '  
  242. ';  
  243.         }  
  244.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.REGION)) {  
  245.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.REGION</h3>  
  246. ';  
  247.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.REGION) + '  
  248. ';  
  249.         }  
  250.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.STREET_ADDRESS)) {  
  251.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.STREET_ADDRESS</h3>  
  252. ';  
  253.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.STREET_ADDRESS) + '  
  254. ';  
  255.         }  
  256.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.TYPE)) {  
  257.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.TYPE</h3>  
  258. ';  
  259.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.TYPE) + '  
  260. ';  
  261.         }  
  262.         if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.UNSTRUCTURED_ADDRESS)) {  
  263.           currentLocationHtml = currentLocationHtml + '<h3>opensocial.Address.Field.UNSTRUCTURED_ADDRESS</h3>  
  264. ';  
  265.           currentLocationHtml = currentLocationHtml + currentLocation.getField(opensocial.Address.Field.UNSTRUCTURED_ADDRESS) + '  
  266. ';  
  267.         }  
  268.       }  
  269.       else {  
  270.         currentLocationHtml = currentLocationHtml + 'UNDEFINED  
  271. ';  
  272.       }  
  273.       document.getElementById('view_CURRENT_LOCATION')  
  274.         .innerHTML = currentLocationHtml;  
  275.     }  
  276.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.ADDRESSES)) {  
  277.       var addresses = data.getField(opensocial.Person.Field.ADDRESSES);  
  278.       var addressHtml = '<h2>opensocial.Person.Field.ADDRESSES</h2>  
  279. ';  
  280.       if (addresses) {  
  281.         for (xx in addresses) {  
  282.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.COUNTRY)) {  
  283.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.COUNTRY</h3>  
  284. ';  
  285.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.COUNTRY) + '  
  286. ';  
  287.           }  
  288.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.EXTENDED_ADDRESS)) {  
  289.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.EXTENDED_ADDRESS</h3>  
  290. ';  
  291.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.EXTENDED_ADDRESS) + '  
  292. ';  
  293.           }  
  294.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LATITUDE)) {  
  295.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.LATITUDE</h3>  
  296. ';  
  297.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.LATITUDE) + '  
  298. ';  
  299.           }  
  300.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LOCALITY)) {  
  301.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.LOCALITY</h3>  
  302. ';  
  303.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.LOCALITY) + '  
  304. ';  
  305.           }  
  306.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LONGITUDE)) {  
  307.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.LONGITUDE</h3>  
  308. ';  
  309.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.LONGITUDE) + '  
  310. ';  
  311.           }  
  312.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.PO_BOX)) {  
  313.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.PO_BOX</h3>  
  314. ';  
  315.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.PO_BOX) + '  
  316. ';  
  317.           }  
  318.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.POSTAL_CODE)) {  
  319.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.POSTAL_CODE</h3>  
  320. ';  
  321.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.POSTAL_CODE) + '  
  322. ';  
  323.           }  
  324.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.REGION)) {  
  325.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.REGION</h3>  
  326. ';  
  327.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.REGION) + '  
  328. ';  
  329.           }  
  330.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.STREET_ADDRESS)) {  
  331.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.STREET_ADDRESS</h3>  
  332. ';  
  333.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.STREET_ADDRESS) + '  
  334. ';  
  335.           }  
  336.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.TYPE)) {  
  337.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.TYPE</h3>  
  338. ';  
  339.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.TYPE) + '  
  340. ';  
  341.           }  
  342.           if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.UNSTRUCTURED_ADDRESS)) {  
  343.             addressHtml = addressHtml + '<h3>opensocial.Address.Field.UNSTRUCTURED_ADDRESS</h3>  
  344. ';  
  345.             addressHtml = addressHtml + addresses[xx].getField(opensocial.Address.Field.UNSTRUCTURED_ADDRESS) + '  
  346. ';  
  347.           }  
  348.   
  349.           addressHtml = addressHtml + xx + '番目終わり----------------------------------------------------------  
  350. ';  
  351.         }  
  352.       }  
  353.       else {  
  354.         addressHtml = addressHtml + 'UNDEFINED  
  355. ';  
  356.       }  
  357.       document.getElementById('view_ADDRESSES').innerHTML = addressHtml;  
  358.     }  
  359.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.EMAILS)) {  
  360.       var emails = data.getField(opensocial.Person.Field.EMAILS);  
  361.       var emailHtml = '<h2>opensocial.Person.Field.EMAILS</h2>  
  362. ';  
  363.       if (emails) {  
  364.         for (xx in emails) {  
  365.           if (env.supportsField(opensocial.Environment.ObjectType.EMAIL, opensocial.Email.Field.ADDRESS)) {  
  366.             emailHtml = emailHtml + '<h3>opensocial.Email.Field.ADDRESS</h3>  
  367. ';  
  368.             emailHtml = emailHtml + emails[xx].getField(opensocial.Email.Field.ADDRESS) + '  
  369. ';  
  370.           }  
  371.           if (env.supportsField(opensocial.Environment.ObjectType.EMAIL, opensocial.Email.Field.TYPE)) {  
  372.             emailHtml = emailHtml + '<h3>opensocial.Email.Field.TYPE</h3>  
  373. ';  
  374.             emailHtml = emailHtml + emails[xx].getField(opensocial.Email.Field.TYPE) + '  
  375. ';  
  376.           }  
  377.           emailHtml = emailHtml + xx + '番目終了 --------------------------------------  
  378. ';  
  379.         }  
  380.       }  
  381.       else {  
  382.         emailHtml = emailHtml + 'UNDEFINED  
  383. ';  
  384.       }  
  385.       document.getElementById('view_EMAILS').innerHTML = emailHtml;  
  386.     }  
  387.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.PHONE_NUMBERS)) {  
  388.       var phones = data.getField(opensocial.Person.Field.PHONE_NUMBERS);  
  389.       var phoneHtml = '<h2>opensocial.Person.Field.PHONE_NUMBERS</h2>  
  390. ';  
  391.       if (phones) {  
  392.         for (xx in phones) {  
  393.           if (env.supportsField(opensocial.Environment.ObjectType.PHONE, opensocial.Phone.Field.NUMBER)) {  
  394.             phoneHtml = phoneHtml + '<h3>opensocial.Phone.Field.NUMBER</h3>  
  395. ';  
  396.             phoneHtml = phoneHtml + phones[xx].getField(opensocial.Phone.Field.NUMBER) + '  
  397. ';  
  398.           }  
  399.           if (env.supportsField(opensocial.Environment.ObjectType.PHONE, opensocial.Phone.Field.TYPE)) {  
  400.             phoneHtml = phoneHtml + '<h3>opensocial.Phone.Field.TYPE</h3>  
  401. ';  
  402.             phoneHtml = phoneHtml + phones[xx].getField(opensocial.Phone.Field.TYPE) + '  
  403. ';  
  404.           }  
  405.           phoneHtml = phoneHtml + xx + '番目終了 --------------------------------------  
  406. ';  
  407.         }  
  408.       }  
  409.       else {  
  410.         phoneHtml = phoneHtml + 'UNDEFINED  
  411. ';  
  412.       }  
  413.       document.getElementById('view_PHONE_NUMBERS').innerHTML = phoneHtml;  
  414.     }  
  415.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.ABOUT_ME)) {  
  416.       var aboutMe = data.getField(opensocial.Person.Field.ABOUT_ME);  
  417.       var aboutMeHtml = '<h2>opensocial.Person.Field.ABOUT_ME</h2>  
  418. ';  
  419.       if (aboutMe) {  
  420.         aboutMeHtml = aboutMeHtml + aboutMe + '  
  421. ';  
  422.       }  
  423.       else {  
  424.         aboutMeHtml = aboutMeHtml + 'UNDEFINED  
  425. ';  
  426.       }  
  427.       document.getElementById('view_ABOUT_ME').innerHTML = aboutMeHtml;  
  428.     }  
  429.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.STATUS)) {  
  430.       var status = data.getField(opensocial.Person.Field.STATUS);  
  431.       var statusHtml = '<h2>opensocial.Person.Field.STATUS</h2>  
  432. ';  
  433.       if (status) {  
  434.         statusHtml = statusHtml + status + '  
  435. ';  
  436.       }  
  437.       else {  
  438.         statusHtml = statusHtml + 'UNDEFINED  
  439. ';  
  440.       }  
  441.       document.getElementById('view_STATUS').innerHTML = statusHtml;  
  442.     }  
  443.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.PROFILE_SONG)) {  
  444.       var profileSong = data.getField(opensocial.Person.Field.PROFILE_SONG);  
  445.       var profileSongHtml = '<h2>opensocial.Person.Field.PROFILE_SONG</h2>  
  446. ';  
  447.       if (profileSong) {  
  448.         if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.ADDRESS)) {  
  449.           profileSongHtml = profileSongHtml + '<h3>opensocial.Url.Field.ADDRESS</h3>  
  450. ';  
  451.           profileSongHtml = profileSongHtml + profileSong.getField(opensocial.Url.Field.ADDRESS) + '  
  452. ';  
  453.         }  
  454.         if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.LINK_TEXT)) {  
  455.           profileSongHtml = profileSongHtml + '<h3>opensocial.Url.Field.LINK_TEXT</h3>  
  456. ';  
  457.           profileSongHtml = profileSongHtml + profileSong.getField(opensocial.Url.Field.LINK_TEXT) + '  
  458. ';  
  459.         }  
  460.         if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.TYPE)) {  
  461.           profileSongHtml = profileSongHtml + '<h3>opensocial.Url.Field.TYPE</h3>  
  462. ';  
  463.           profileSongHtml = profileSongHtml + profileSong.getField(opensocial.Url.Field.TYPE) + '  
  464. ';  
  465.         }  
  466.       }  
  467.       else {  
  468.         profileSongHtml = profileSongHtml + 'UNDEFINED  
  469. ';  
  470.       }  
  471.       document.getElementById('view_PROFILE_SONG').innerHTML = profileSongHtml;  
  472.     }  
  473.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.PROFILE_VIDEO)) {  
  474.       var profileVideo = data.getField(opensocial.Person.Field.PROFILE_VIDEO);  
  475.       var profileVideoHtml = '<h2>opensocial.Person.Field.PROFILE_VIDEO</h2>  
  476. ';  
  477.       if (profileVideo) {  
  478.         if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.ADDRESS)) {  
  479.           profileVideoHtml = profileVideoHtml + '<h3>opensocial.Url.Field.ADDRESS</h3>  
  480. ';  
  481.           profileVideoHtml = profileVideoHtml + profileVideo.getField(opensocial.Url.Field.ADDRESS) + '  
  482. ';  
  483.         }  
  484.         if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.LINK_TEXT)) {  
  485.           profileVideoHtml = profileVideoHtml + '<h3>opensocial.Url.Field.LINK_TEXT</h3>  
  486. ';  
  487.           profileVideoHtml = profileVideoHtml + profileVideo.getField(opensocial.Url.Field.LINK_TEXT) + '  
  488. ';  
  489.         }  
  490.         if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.TYPE)) {  
  491.           profileVideoHtml = profileVideoHtml + '<h3>opensocial.Url.Field.TYPE</h3>  
  492. ';  
  493.           profileVideoHtml = profileVideoHtml + profileVideo.getField(opensocial.Url.Field.TYPE) + '  
  494. ';  
  495.         }  
  496.       }  
  497.       else {  
  498.         profileVideoHtml = profileVideoHtml + 'UNDEFINED  
  499. ';  
  500.       }  
  501.       document.getElementById('view_PROFILE_VIDEO').innerHTML = profileVideoHtml;  
  502.     }  
  503.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.GENDER)) {  
  504.       var gender = data.getField(opensocial.Person.Field.GENDER);  
  505.       var genderHtml = '<h2>opensocial.Person.Field.GENDER</h2>  
  506. ';  
  507.       if (gender) {  
  508.         genderHtml = genderHtml + gender.getDisplayValue() + '  
  509. ';  
  510.       }  
  511.       else {  
  512.         genderHtml = genderHtml + 'UNDEFINED  
  513. ';  
  514.       }  
  515.       document.getElementById('view_GENDER').innerHTML = genderHtml;  
  516.     }  
  517.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.SEXUAL_ORIENTATION)) {  
  518.       var sexualOrientation = data.getField(opensocial.Person.Field.SEXUAL_ORIENTATION);  
  519.       var sexualOrientationHtml = '<h2>opensocial.Person.Field.SEXUAL_ORIENTATION</h2>  
  520. ';  
  521.       if (sexualOrientation) {  
  522.         sexualOrientationHtml = sexualOrientationHtml + sexualOrientation + '  
  523. ';  
  524.       }  
  525.       else {  
  526.         sexualOrientationHtml = sexualOrientationHtml + 'UNDEFINED  
  527. ';  
  528.       }  
  529.       document.getElementById('view_SEXUAL_ORIENTATION').innerHTML = sexualOrientationHtml;  
  530.     }  
  531.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.RELATIONSHIP_STATUS)) {  
  532.       var relationshipStatus = data.getField(opensocial.Person.Field.RELATIONSHIP_STATUS);  
  533.       var relationshipStatusHtml = '<h2>opensocial.Person.Field.RELATIONSHIP_STATUS</h2>  
  534. ';  
  535.       if (relationshipStatus) {  
  536.         relationshipStatusHtml = relationshipStatusHtml + relationshipStatus + '  
  537. ';  
  538.       }  
  539.       else {  
  540.         relationshipStatusHtml = relationshipStatusHtml + 'UNDEFINED  
  541. ';  
  542.       }  
  543.       document.getElementById('view_RELATIONSHIP_STATUS').innerHTML = relationshipStatusHtml;  
  544.     }  
  545.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.AGE)) {  
  546.       var age = data.getField(opensocial.Person.Field.AGE);  
  547.       var ageHtml = '<h2>opensocial.Person.Field.AGE</h2>  
  548. ';  
  549.       if (age) {  
  550.         ageHtml = ageHtml + age + '  
  551. ';  
  552.       }  
  553.       else {  
  554.         ageHtml = ageHtml + 'UNDEFINED  
  555. ';  
  556.       }  
  557.       document.getElementById('view_AGE').innerHTML = ageHtml;  
  558.   
  559.     }  
  560.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.DATE_OF_BIRTH)) {  
  561.       var dateOfBirth = data.getField(opensocial.Person.Field.DATE_OF_BIRTH);  
  562.       var dateOfBirthHtml = '<h2>opensocial.Person.Field.DATE_OF_BIRTH</h2>  
  563. ';  
  564.       if (dateOfBirth) {  
  565.         dateOfBirthHtml = dateOfBirthHtml + dateOfBirth + '  
  566. ';  
  567.       }  
  568.       else {  
  569.         dateOfBirthHtml = dateOfBirthHtml + 'UNDEFINED  
  570. ';  
  571.       }  
  572.       document.getElementById('view_DATE_OF_BIRTH').innerHTML = dateOfBirthHtml;  
  573.   
  574.     }  
  575.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.BODY_TYPE)) {  
  576.       var bodyType = data.getField(opensocial.Person.Field.BODY_TYPE);  
  577.       var bodyTypeHtml = '<h2>opensocial.Person.Field.BODY_TYPE</h2>  
  578. ';  
  579.       if (bodyType) {  
  580.         if (env.supportsField(opensocial.Environment.ObjectType.BODY_TYPE, opensocial.BodyType.Field.BUILD)) {  
  581.           var build = bodyType.getField(opensocial.BodyType.Field.BUILD);  
  582.           var buildHtml = '<h3>opensocial.BodyType.Field.BUILD</h3>  
  583. ';  
  584.           if (build) {  
  585.             buildHtml = buildHtml + build + '  
  586. ';  
  587.           }  
  588.           else {  
  589.             buildHtml = buildHtml + 'UNDEFINED  
  590. ';  
  591.           }  
  592.           bodyTypeHtml = bodyTypeHtml + buildHtml;  
  593.         }  
  594.         if (env.supportsField(opensocial.Environment.ObjectType.BODY_TYPE, opensocial.BodyType.Field.EYE_COLOR)) {  
  595.           var eyeColor = bodyType.getField(opensocial.BodyType.Field.EYE_COLOR);  
  596.           var eyeColorHtml = '<h3>opensocial.BodyType.Field.EYE_COLOR</h3>  
  597. ';  
  598.           if (eyeColor) {  
  599.             eyeColorHtml = eyeColorHtml + eyeColor + '  
  600. ';  
  601.           }  
  602.           else {  
  603.             eyeColorHtml = eyeColorHtml + 'UNDEFINED  
  604. ';  
  605.           }  
  606.           bodyTypeHtml = bodyTypeHtml + eyeColorHtml;  
  607.         }  
  608.         if (env.supportsField(opensocial.Environment.ObjectType.BODY_TYPE, opensocial.BodyType.Field.HAIR_COLOR)) {  
  609.           var hairColor = bodyType.getField(opensocial.BodyType.Field.HAIR_COLOR);  
  610.           var hairColorHtml = '<h3>opensocial.BodyType.Field.HAIR_COLOR</h3>  
  611. ';  
  612.           if (hairColor) {  
  613.             hairColorHtml = hairColorHtml + hairColor + '  
  614. ';  
  615.           }  
  616.           else {  
  617.             hairColorHtml = hairColorHtml + 'UNDEFINED  
  618. ';  
  619.           }  
  620.           bodyTypeHtml = bodyTypeHtml + hairColorHtml;  
  621.         }  
  622.         if (env.supportsField(opensocial.Environment.ObjectType.BODY_TYPE, opensocial.BodyType.Field.HEIGHT)) {  
  623.           var height = bodyType.getField(opensocial.BodyType.Field.HEIGHT);  
  624.           var heightHtml = '<h3>opensocial.BodyType.Field.HEIGHT</h3>  
  625. ';  
  626.           if (! isNaN(height)) {  
  627.             heightHtml = heightHtml + height + '  
  628. ';  
  629.           }  
  630.           else {  
  631.             heightHtml = heightHtml + 'UNDEFINED  
  632. ';  
  633.           }  
  634.           bodyTypeHtml = bodyTypeHtml + heightHtml;  
  635.         }  
  636.         if (env.supportsField(opensocial.Environment.ObjectType.BODY_TYPE, opensocial.BodyType.Field.WEIGHT)) {  
  637.           var weight = bodyType.getField(opensocial.BodyType.Field.WEIGHT);  
  638.           var weightHtml = '<h3>opensocial.BodyType.Field.WEIGHT</h3>  
  639. ';  
  640.           if (! isNaN(weight)) {  
  641.             weightHtml = weightHtml + weight + '  
  642. ';  
  643.           }  
  644.           else {  
  645.             weightHtml = weightHtml + 'UNDEFINED  
  646. ';  
  647.           }  
  648.           bodyTypeHtml = bodyTypeHtml + weightHtml;  
  649.         }  
  650.       }  
  651.       else {  
  652.         bodyTypeHtml = bodyTypeHtml + 'UNDEFINED  
  653. ';  
  654.       }  
  655.       document.getElementById('view_BODY_TYPE').innerHTML = bodyTypeHtml;  
  656.     }  
  657.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.ETHNICITY)) {  
  658.       var ethnicity = data.getField(opensocial.Person.Field.ETHNICITY);  
  659.       var ethnicityHtml = '<h2>opensocial.Person.Field.ETHNICITY</h2>  
  660. ';  
  661.       if (ethnicity) {  
  662.         ethnicityHtml = ethnicityHtml + ethnicity;  
  663.       }  
  664.       else {  
  665.         ethnicityHtml = ethnicityHtml + 'UNDEFINED  
  666. ';  
  667.       }  
  668.       document.getElementById('view_ETHNICITY').innerHTML = ethnicityHtml;  
  669.     }  
  670.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.SMOKER)) {  
  671.       var smoker = data.getField(opensocial.Person.Field.SMOKER);  
  672.       var smokerHtml = '<h2>opensocial.Person.Field.SMOKER</h2>  
  673. ';  
  674.       if (smoker) {  
  675.         smokerHtml = smokerHtml + smoker.getDisplayValue();  
  676.       }  
  677.       else {  
  678.         smokerHtml = smokerHtml + 'UNDEFINED  
  679. ';  
  680.       }  
  681.       document.getElementById('view_SMOKER').innerHTML = smokerHtml;  
  682.     }  
  683.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.DRINKER)) {  
  684.       var drinker = data.getField(opensocial.Person.Field.DRINKER);  
  685.       var drinkerHtml = '<h2>opensocial.Person.Field.DRINKER</h2>  
  686. ';  
  687.       if (drinker) {  
  688.         drinkerHtml = drinkerHtml + drinker.getDisplayValue();  
  689.       }  
  690.       else {  
  691.         drinkerHtml = drinkerHtml + 'UNDEFINED  
  692. ';  
  693.       }  
  694.       document.getElementById('view_DRINKER').innerHTML = drinkerHtml;  
  695.   
  696.     }  
  697.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.CHILDREN)) {  
  698.       var children = data.getField(opensocial.Person.Field.CHILDREN);  
  699.       var childrenHtml = '<h2>opensocial.Person.Field.CHILDREN</h2>  
  700. ';  
  701.       if (children) {  
  702.         childrenHtml = childrenHtml + children + '  
  703. ';  
  704.       }  
  705.       else {  
  706.         childrenHtml = childrenHtml + 'UNDEFINED  
  707. ';  
  708.       }  
  709.       document.getElementById('view_CHILDREN').innerHTML = childrenHtml;  
  710.     }  
  711.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.PETS)) {  
  712.       var pets = data.getField(opensocial.Person.Field.PETS);  
  713.       var petsHtml = '<h2>opensocial.Person.Field.PETS</h2>  
  714. ';  
  715.       if (pets) {  
  716.         petsHtml = petsHtml + pets + '  
  717. ';  
  718.       }  
  719.       else {  
  720.         petsHtml = petsHtml + 'UNDEFINED  
  721. ';  
  722.       }  
  723.       document.getElementById('view_PETS').innerHTML = petsHtml;  
  724.     }  
  725.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.LIVING_ARRANGEMENT)) {  
  726.       var livingArrangement = data.getField(opensocial.Person.Field.LIVING_ARRANGEMENT);  
  727.       var livingArrangementHtml = '<h2>opensocial.Person.Field.LIVING_ARRANGEMENT</h2>  
  728. ';  
  729.       if (livingArrangement) {  
  730.         livingArrangementHtml = livingArrangementHtml + livingArrangement + '  
  731. ';  
  732.       }  
  733.       else {  
  734.         livingArrangementHtml = livingArrangementHtml + 'UNDEFINED  
  735. ';  
  736.       }  
  737.       document.getElementById('view_LIVING_ARRANGEMENT').innerHTML = livingArrangementHtml;  
  738.     }  
  739.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.TIME_ZONE)) {  
  740.       var timeZone = data.getField(opensocial.Person.Field.TIME_ZONE);  
  741.       var timeZoneHtml = '<h2>opensocial.Person.Field.TIME_ZONE</h2>  
  742. ';  
  743.       if (timeZone) {  
  744.         timeZoneHtml = timeZoneHtml + timeZone + '  
  745. ';  
  746.       }  
  747.       else {  
  748.         timeZoneHtml = timeZoneHtml + 'UNDEFINED  
  749. ';  
  750.       }  
  751.       document.getElementById('view_TIME_ZONE').innerHTML = timeZoneHtml;  
  752.   
  753.     }  
  754.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.LANGUAGE_SPOKEN)) {  
  755.       var languagesSpoken = data.getField(opensocial.Person.Field.LANGUAGES_SPOKEN);  
  756.       var languagesSpokenHtml = '<h2>opensocial.Person.Field.LANGUAGES_SPOKEN</h2>  
  757. ';  
  758.       if (languagesSpoken) {  
  759.         languagesSpokenHtml = languagesSpokenHtml + languagesSpoken + '  
  760. ';  
  761.       }  
  762.       else {  
  763.         languagesSpokenHtml = languagesSpokenHtml + 'UNDEFINED  
  764. ';  
  765.       }  
  766.       document.getElementById('view_LANGUAGES_SPOKEN').innerHTML = languagesSpokenHtml;  
  767.   
  768.     }  
  769.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.JOBS)) {  
  770.       var jobs = data.getField(opensocial.Person.Field.JOBS);  
  771.       var jobsHtml = '<h2>opensocial.Person.Field.JOBS</h2>  
  772. ';  
  773.       if (jobs) {  
  774.         for (xx in jobs) {  
  775.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.NAME)) {  
  776.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.NAME</h3>';  
  777.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.NAME) + '  
  778. ';  
  779.           }  
  780.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.ADDRESS)) {  
  781.             var address = jobs[xx].getField(opensocial.Organization.Field.ADDRESS);  
  782.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.ADDRESS</h3>';  
  783.   
  784.             if (address) {  
  785.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.COUNTRY)) {  
  786.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.COUNTRY</h4>';  
  787.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.COUNTRY) + '  
  788. ';  
  789.               }  
  790.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.EXTENDED_ADDRESS)) {  
  791.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.EXTENDED_ADDRESS</h4>';  
  792.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.EXTENDED_ADDRESS) + '  
  793. ';  
  794.               }  
  795.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LATITUDE)) {  
  796.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.LATITUDE</h4>';  
  797.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.LATITUDE) + '  
  798. ';  
  799.               }  
  800.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LOCALITY)) {  
  801.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.LOCALITY</h4>';  
  802.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.LOCALITY) + '  
  803. ';  
  804.               }  
  805.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LONGITUDE)) {  
  806.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.LONGITUDE</h4>';  
  807.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.LONGITUDE) + '  
  808. ';  
  809.               }  
  810.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.PO_BOX)) {  
  811.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.PO_BOX</h4>';  
  812.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.PO_BOX) + '  
  813. ';  
  814.               }  
  815.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.POSTAL_CODE)) {  
  816.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.POSTAL_CODE</h4>';  
  817.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.POSTAL_CODE) + '  
  818. ';  
  819.               }  
  820.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.REGION)) {  
  821.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.REGION</h4>';  
  822.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.REGION) + '  
  823. ';  
  824.               }  
  825.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.STREET_ADDRESS)) {  
  826.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.STREET_ADDRESS</h4>';  
  827.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.STREET_ADDRESS) + '  
  828. ';  
  829.               }  
  830.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.TYPE)) {  
  831.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.TYPE</h4>';  
  832.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.TYPE) + '  
  833. ';  
  834.               }  
  835.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.UNSTRUCTURED_ADDRESS)) {  
  836.                 jobsHtml = jobsHtml + '<h4>opensocial.Address.Field.UNSTRUCTURED_ADDRESS</h4>';  
  837.                 jobsHtml = jobsHtml + address.getField(opensocial.Address.Field.UNSTRUCTURED_ADDRESS) + '  
  838. ';  
  839.               }  
  840.             }  
  841.           }  
  842.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.DESCRIPTION)) {  
  843.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.DESCRIPTION</h3>';  
  844.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.DESCRIPTION) + '  
  845. ';  
  846.           }  
  847.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.END_DATE)) {  
  848.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.END_DATE</h3>';  
  849.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.END_DATE) + '  
  850. ';  
  851.           }  
  852.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.FIELD)) {  
  853.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.FIELD</h3>';  
  854.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.FIELD) + '  
  855. ';  
  856.           }  
  857.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.SALARY)) {  
  858.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.SALARY</h3>';  
  859.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.SALARY) + '  
  860. ';  
  861.           }  
  862.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.START_DATE)) {  
  863.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.START_DATE</h3>';  
  864.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.START_DATE) + '  
  865. ';  
  866.           }  
  867.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.SUB_FIELD)) {  
  868.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.SUB_FIELD</h3>';  
  869.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.SUB_FIELD) + '  
  870. ';  
  871.           }  
  872.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.TITLE)) {  
  873.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.TITLE</h3>';  
  874.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.TITLE) + '  
  875. ';  
  876.           }  
  877.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.WEBPAGE)) {  
  878.             jobsHtml = jobsHtml + '<h3>opensocial.Organization.Field.WEBPAGE</h3>';  
  879.             jobsHtml = jobsHtml + jobs[xx].getField(opensocial.Organization.Field.WEBPAGE) + '  
  880. ';  
  881.           }  
  882.         }  
  883.       }  
  884.       else {  
  885.         jobsHtml = jobsHtml + 'UNDEFINED  
  886. ';  
  887.       }  
  888.       document.getElementById('view_JOBS').innerHTML = jobsHtml;  
  889.     }  
  890.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.JOB_INTEREST)) {  
  891.       var jobInterests = data.getField(opensocial.Person.Field.JOB_INTERESTS);  
  892.       var jobInterestsHtml = '<h2>opensocial.Person.Field.JOB_INTERESTS</h2>  
  893. ';  
  894.       if (jobInterests) {  
  895.         jobInterestsHtml = jobInterestsHtml + jobInterests + '  
  896. ';  
  897.       }  
  898.       else {  
  899.         jobInterestsHtml = jobInterestsHtml + 'UNDEFINED  
  900. ';  
  901.       }  
  902.       document.getElementById('view_JOB_INTERESTS').innerHTML = jobInterestsHtml;  
  903.   
  904.     }  
  905.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.SCHOOLS)) {  
  906.       var schools = data.getField(opensocial.Person.Field.SCHOOLS);  
  907.       var schoolsHtml = '<h2>opensocial.Person.Field.SCHOOLS</h2>  
  908. ';  
  909.       if (schools) {  
  910.         for (xx in schools) {  
  911.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.NAME)) {  
  912.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.NAME</h3>';  
  913.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.NAME) + '  
  914. ';  
  915.           }  
  916.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.ADDRESS)) {  
  917.             var address = schools[xx].getField(opensocial.Organization.Field.ADDRESS);  
  918.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.ADDRESS</h3>';  
  919.   
  920.             if (address) {  
  921.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.COUNTRY)) {  
  922.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.COUNTRY</h4>';  
  923.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.COUNTRY) + '  
  924. ';  
  925.               }  
  926.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.EXTENDED_ADDRESS)) {  
  927.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.EXTENDED_ADDRESS</h4>';  
  928.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.EXTENDED_ADDRESS) + '  
  929. ';  
  930.               }  
  931.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LATITUDE)) {  
  932.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.LATITUDE</h4>';  
  933.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.LATITUDE) + '  
  934. ';  
  935.               }  
  936.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LOCALITY)) {  
  937.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.LOCALITY</h4>';  
  938.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.LOCALITY) + '  
  939. ';  
  940.               }  
  941.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.LONGITUDE)) {  
  942.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.LONGITUDE</h4>';  
  943.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.LONGITUDE) + '  
  944. ';  
  945.               }  
  946.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.PO_BOX)) {  
  947.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.PO_BOX</h4>';  
  948.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.PO_BOX) + '  
  949. ';  
  950.               }  
  951.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.POSTAL_CODE)) {  
  952.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.POSTAL_CODE</h4>';  
  953.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.POSTAL_CODE) + '  
  954. ';  
  955.               }  
  956.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.REGION)) {  
  957.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.REGION</h4>';  
  958.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.REGION) + '  
  959. ';  
  960.               }  
  961.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.STREET_ADDRESS)) {  
  962.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.STREET_ADDRESS</h4>';  
  963.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.STREET_ADDRESS) + '  
  964. ';  
  965.               }  
  966.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.TYPE)) {  
  967.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.TYPE</h4>';  
  968.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.TYPE) + '  
  969. ';  
  970.               }  
  971.               if (env.supportsField(opensocial.Environment.ObjectType.ADDRESS, opensocial.Address.Field.UNSTRUCTURED_ADDRESS)) {  
  972.                 schoolsHtml = schoolsHtml + '<h4>opensocial.Address.Field.UNSTRUCTURED_ADDRESS</h4>';  
  973.                 schoolsHtml = schoolsHtml + address.getField(opensocial.Address.Field.UNSTRUCTURED_ADDRESS) + '  
  974. ';  
  975.               }  
  976.             }  
  977.           }  
  978.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.DESCRIPTION)) {  
  979.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.DESCRIPTION</h3>';  
  980.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.DESCRIPTION) + '  
  981. ';  
  982.           }  
  983.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.END_DATE)) {  
  984.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.END_DATE</h3>';  
  985.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.END_DATE) + '  
  986. ';  
  987.           }  
  988.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.FIELD)) {  
  989.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.FIELD</h3>';  
  990.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.FIELD) + '  
  991. ';  
  992.           }  
  993.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.SALARY)) {  
  994.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.SALARY</h3>';  
  995.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.SALARY) + '  
  996. ';  
  997.           }  
  998.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.START_DATE)) {  
  999.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.START_DATE</h3>';  
  1000.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.START_DATE) + '  
  1001. ';  
  1002.           }  
  1003.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.SUB_FIELD)) {  
  1004.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.SUB_FIELD</h3>';  
  1005.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.SUB_FIELD) + '  
  1006. ';  
  1007.           }  
  1008.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.TITLE)) {  
  1009.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.TITLE</h3>';  
  1010.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.TITLE) + '  
  1011. ';  
  1012.           }  
  1013.           if (env.supportsField(opensocial.Environment.ObjectType.ORGANIZATION, opensocial.Organization.Field.WEBPAGE)) {  
  1014.             schoolsHtml = schoolsHtml + '<h3>opensocial.Organization.Field.WEBPAGE</h3>';  
  1015.             schoolsHtml = schoolsHtml + schools[xx].getField(opensocial.Organization.Field.WEBPAGE) + '  
  1016. ';  
  1017.           }  
  1018.         }  
  1019.       }  
  1020.       else {  
  1021.         schoolsHtml = schoolsHtml + 'UNDEFINED  
  1022. ';  
  1023.       }  
  1024.       document.getElementById('view_SCHOOLS').innerHTML = schoolsHtml;  
  1025.     }  
  1026.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.INTERESTS)) {  
  1027.       var interests = data.getField(opensocial.Person.Field.INTERESTS);  
  1028.       var interestsHtml = '<h2>opensocial.Person.Field.INTERESTS</h2>  
  1029. ';  
  1030.       if (interests) {  
  1031.         interestsHtml = interestsHtml + interests + '  
  1032. ';  
  1033.       }  
  1034.       else {  
  1035.         interestsHtml = interestsHtml + 'UNDEFINED  
  1036. ';  
  1037.       }  
  1038.       document.getElementById('view_INTERESTS').innerHTML = interestsHtml;  
  1039.   
  1040.     }  
  1041.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.URLS)) {  
  1042.       var urls = data.getField(opensocial.Person.Field.URLS);  
  1043.       var urlsHtml = '<h2>opensocial.Person.Field.URLS</h2>  
  1044. ';  
  1045.       if (urls) {  
  1046.         for (xx in urls) {  
  1047.           if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.ADDRESS)) {  
  1048.             urlsHtml = urlsHtml + '<h3>opensocial.Url.Field.ADDRESS</h3>  
  1049. ';  
  1050.             urlsHtml = urlsHtml + urls[xx].getField(opensocial.Url.Field.ADDRESS) + '  
  1051. ';  
  1052.           }  
  1053.           if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.LINK_TEXT)) {  
  1054.             urlsHtml = urlsHtml + '<h3>opensocial.Url.Field.LINK_TEXT</h3>  
  1055. ';  
  1056.             urlsHtml = urlsHtml + urls[xx].getField(opensocial.Url.Field.LINK_TEXT) + '  
  1057. ';  
  1058.           }  
  1059.           if (env.supportsField(opensocial.Environment.ObjectType.URL, opensocial.Url.Field.TYPE)) {  
  1060.             urlsHtml = urlsHtml + '<h3>opensocial.Url.Field.TYPE</h3>  
  1061. ';  
  1062.             urlsHtml = urlsHtml + urls[xx].getField(opensocial.Url.Field.TYPE) + '  
  1063. ';  
  1064.           }  
  1065.         }  
  1066.       }  
  1067.       else {  
  1068.         urlsHtml = urlsHtml + 'UNDEFINED  
  1069. ';  
  1070.       }  
  1071.       document.getElementById('view_URLS').innerHTML = urlsHtml;  
  1072.     }  
  1073.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.MUSIC)) {  
  1074.       var music = data.getField(opensocial.Person.Field.MUSIC);  
  1075.       var musicHtml = '<h2>opensocial.Person.Field.MUSIC</h2>  
  1076. ';  
  1077.       if (music) {  
  1078.         for (xx in music) {  
  1079.           musicHtml = musicHtml + music[xx] + '  
  1080. ';  
  1081.         }  
  1082.       }  
  1083.       else {  
  1084.         musicHtml = musicHtml + 'UNDEFINED  
  1085. ';  
  1086.       }  
  1087.       document.getElementById('view_MUSIC').innerHTML = musicHtml;  
  1088.     }  
  1089.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.MOVIES)) {  
  1090.       var movie = data.getField(opensocial.Person.Field.MOVIES);  
  1091.       var movieHtml = '<h2>opensocial.Person.Field.MOVIES</h2>  
  1092. ';  
  1093.       if (movie) {  
  1094.         for (xx in movie) {  
  1095.           movieHtml = movieHtml + movie[xx] + '  
  1096. ';  
  1097.         }  
  1098.       }  
  1099.       else {  
  1100.         movieHtml = movieHtml + 'UNDEFINED  
  1101. ';  
  1102.       }  
  1103.       document.getElementById('view_MOVIES').innerHTML = movieHtml;  
  1104.     }  
  1105.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.TV_SHOWS)) {  
  1106.       var tvShow = data.getField(opensocial.Person.Field.TV_SHOWS);  
  1107.       var tvShowHtml = '<h2>opensocial.Person.Field.TV_SHOWS</h2>  
  1108. ';  
  1109.       if (tvShow) {  
  1110.         for (xx in tvShow) {  
  1111.           tvShowHtml = tvShowHtml + tvShow[xx] + '  
  1112. ';  
  1113.         }  
  1114.       }  
  1115.       else {  
  1116.         tvShowHtml = tvShowHtml + 'UNDEFINED  
  1117. ';  
  1118.       }  
  1119.       document.getElementById('view_TV_SHOWS').innerHTML = tvShowHtml;  
  1120.     }  
  1121.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.BOOKS)) {  
  1122.       var book = data.getField(opensocial.Person.Field.BOOKS);  
  1123.       var bookHtml = '<h2>opensocial.Person.Field.BOOKS</h2>  
  1124. ';  
  1125.       if (book) {  
  1126.         for (xx in book) {  
  1127.           bookHtml = bookHtml + book[xx] + '  
  1128. ';  
  1129.         }  
  1130.       }  
  1131.       else {  
  1132.         bookHtml = bookHtml + 'UNDEFINED  
  1133. ';  
  1134.       }  
  1135.       document.getElementById('view_BOOKS').innerHTML = bookHtml;  
  1136.     }  
  1137.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.ACTIVITIES)) {  
  1138.       var activities = data.getField(opensocial.Person.Field.ACTIVITIES);  
  1139.       var activitiesHtml = '<h2>opensocial.Person.Field.ACTIVITIES</h2>  
  1140. ';  
  1141.       if (activities) {  
  1142.         for (xx in activities) {  
  1143.           activitiesHtml = activitiesHtml + activities[xx] + '  
  1144. ';  
  1145.         }  
  1146.       }  
  1147.       else {  
  1148.         activitiesHtml = activitiesHtml + 'UNDEFINED  
  1149. ';  
  1150.       }  
  1151.       document.getElementById('view_ACTIVITIES').innerHTML = activitiesHtml;  
  1152.     }  
  1153.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.SPORTS)) {  
  1154.       var sports = data.getField(opensocial.Person.Field.SPORTS);  
  1155.       var sportsHtml = '<h2>opensocial.Person.Field.SPORTS</h2>  
  1156. ';  
  1157.       if (sports) {  
  1158.         for (xx in sports) {  
  1159.           sportsHtml = sportsHtml + sports[xx] + '  
  1160. ';  
  1161.         }  
  1162.       }  
  1163.       else {  
  1164.         sportsHtml = sportsHtml + 'UNDEFINED  
  1165. ';  
  1166.       }  
  1167.       document.getElementById('view_SPORTS').innerHTML = sportsHtml;  
  1168.     }  
  1169.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.HEROES)) {  
  1170.       var heroes = data.getField(opensocial.Person.Field.HEROES);  
  1171.       var heroesHtml = '<h2>opensocial.Person.Field.HEROES</h2>  
  1172. ';  
  1173.       if (heroes) {  
  1174.         for (xx in heroes) {  
  1175.           heroesHtml = heroesHtml + heroes[xx] + '  
  1176. ';  
  1177.         }  
  1178.       }  
  1179.       else {  
  1180.         heroesHtml = heroesHtml + 'UNDEFINED  
  1181. ';  
  1182.       }  
  1183.       document.getElementById('view_HEROES').innerHTML = heroesHtml;  
  1184.     }  
  1185.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.QUOTES)) {  
  1186.       var quotes = data.getField(opensocial.Person.Field.QUOTES);  
  1187.       var quotesHtml = '<h2>opensocial.Person.Field.QUOTES</h2>  
  1188. ';  
  1189.       if (quotes) {  
  1190.         for (xx in quotes) {  
  1191.           quotesHtml = quotesHtml + quotes[xx] + '  
  1192. ';  
  1193.         }  
  1194.       }  
  1195.       else {  
  1196.         quotesHtml = quotesHtml + 'UNDEFINED  
  1197. ';  
  1198.       }  
  1199.       document.getElementById('view_QUOTES').innerHTML = quotesHtml;  
  1200.     }  
  1201.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.CARS)) {  
  1202.       var cars = data.getField(opensocial.Person.Field.CARS);  
  1203.       var carsHtml = '<h2>opensocial.Person.Field.CARS</h2>  
  1204. ';  
  1205.       if (cars) {  
  1206.         for (xx in cars) {  
  1207.           carsHtml = carsHtml + cars[xx] + '  
  1208. ';  
  1209.         }  
  1210.       }  
  1211.       else {  
  1212.         carsHtml = carsHtml + 'UNDEFINED  
  1213. ';  
  1214.       }  
  1215.       document.getElementById('view_CARS').innerHTML = carsHtml;  
  1216.     }  
  1217.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.FOOD)) {  
  1218.       var food = data.getField(opensocial.Person.Field.FOOD);  
  1219.       var foodHtml = '<h2>opensocial.Person.Field.FOOD</h2>  
  1220. ';  
  1221.       if (food) {  
  1222.         for (xx in food) {  
  1223.           foodHtml = foodHtml + food[xx] + '  
  1224. ';  
  1225.         }  
  1226.       }  
  1227.       else {  
  1228.         foodHtml = foodHtml + 'UNDEFINED  
  1229. ';  
  1230.       }  
  1231.       document.getElementById('view_FOOD').innerHTML = foodHtml;  
  1232.     }  
  1233.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.TURN_ONS)) {  
  1234.       var turnOns = data.getField(opensocial.Person.Field.TURN_ONS);  
  1235.       var turnOnsHtml = '<h2>opensocial.Person.Field.TURN_ONS</h2>  
  1236. ';  
  1237.       if (turnOns) {  
  1238.         for (xx in turnOns) {  
  1239.           turnOnsHtml = turnOnsHtml + turnOns[xx] + '  
  1240. ';  
  1241.         }  
  1242.       }  
  1243.       else {  
  1244.         turnOnsHtml = turnOnsHtml + 'UNDEFINED  
  1245. ';  
  1246.       }  
  1247.       document.getElementById('view_TURN_ONS').innerHTML = turnOnsHtml;  
  1248.     }  
  1249.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.TURN_OFFS)) {  
  1250.       var turnOffs = data.getField(opensocial.Person.Field.TURN_OFFS);  
  1251.       var turnOffsHtml = '<h2>opensocial.Person.Field.TURN_OFFS</h2>  
  1252. ';  
  1253.       if (turnOffs) {  
  1254.         for (xx in turnOffs) {  
  1255.           turnOffsHtml = turnOffsHtml + turnOffs[xx] + '  
  1256. ';  
  1257.         }  
  1258.       }  
  1259.       else {  
  1260.         turnOffsHtml = turnOffsHtml + 'UNDEFINED  
  1261. ';  
  1262.       }  
  1263.       document.getElementById('view_TURN_OFFS').innerHTML = turnOffsHtml;  
  1264.     }  
  1265.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.TAGS)) {  
  1266.       var tags = data.getField(opensocial.Person.Field.TAGS);  
  1267.       var tagsHtml = '<h2>opensocial.Person.Field.TAGS</h2>  
  1268. ';  
  1269.       if (tags) {  
  1270.         for (xx in tags) {  
  1271.           tagsHtml = tagsHtml + tags[xx] + '  
  1272. ';  
  1273.         }  
  1274.       }  
  1275.       else {  
  1276.         tagsHtml = tagsHtml + 'UNDEFINED  
  1277. ';  
  1278.       }  
  1279.       document.getElementById('view_TAGS').innerHTML = tagsHtml;  
  1280.     }  
  1281.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.ROMANCE)) {  
  1282.       var romance = data.getField(opensocial.Person.Field.ROMANCE);  
  1283.       var romanceHtml = '<h2>opensocial.Person.Field.ROMANCE</h2>  
  1284. ';  
  1285.       if (romance) {  
  1286.         romanceHtml = romanceHtml + romance + '  
  1287. ';  
  1288.       }  
  1289.       else {  
  1290.         romanceHtml = romanceHtml + 'UNDEFINED  
  1291. ';  
  1292.       }  
  1293.       document.getElementById('view_ROMANCE').innerHTML = romanceHtml;  
  1294.     }  
  1295.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.SCARED_OF)) {  
  1296.       var scaredOf = data.getField(opensocial.Person.Field.SCARED_OF);  
  1297.       var scaredOfHtml = '<h2>opensocial.Person.Field.SCARED_OF</h2>  
  1298. ';  
  1299.       if (scaredOf) {  
  1300.         scaredOfHtml = scaredOfHtml + scaredOf + '  
  1301. ';  
  1302.       }  
  1303.       else {  
  1304.         scaredOfHtml = scaredOfHtml + 'UNDEFINED  
  1305. ';  
  1306.       }  
  1307.       document.getElementById('view_SCARED_OF').innerHTML = scaredOfHtml;  
  1308.     }  
  1309.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.HAPPIEST_WHEN)) {  
  1310.       var happiestWhen = data.getField(opensocial.Person.Field.HAPPIEST_WHEN);  
  1311.       var happiestWhenHtml = '<h2>opensocial.Person.Field.HAPPIEST_WHEN</h2>  
  1312. ';  
  1313.       if (happiestWhen) {  
  1314.         happiestWhenHtml = happiestWhenHtml + happiestWhen + '  
  1315. ';  
  1316.       }  
  1317.       else {  
  1318.         happiestWhenHtml = happiestWhenHtml + 'UNDEFINED  
  1319. ';  
  1320.       }  
  1321.       document.getElementById('view_HAPPIEST_WHEN').innerHTML = happiestWhenHtml;  
  1322.     }  
  1323.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.FASHION)) {  
  1324.       var fashion = data.getField(opensocial.Person.Field.FASHION);  
  1325.       var fashionHtml = '<h2>opensocial.Person.Field.FASHION</h2>  
  1326. ';  
  1327.       if (fashion) {  
  1328.         fashionHtml = fashionHtml + fashion + '  
  1329. ';  
  1330.       }  
  1331.       else {  
  1332.         fashionHtml = fashionHtml + 'UNDEFINED  
  1333. ';  
  1334.       }  
  1335.       document.getElementById('view_FASHION').innerHTML = fashionHtml;  
  1336.   
  1337.     }  
  1338.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.HUMOR)) {  
  1339.       var humor = data.getField(opensocial.Person.Field.HUMOR);  
  1340.       var humorHtml = '<h2>opensocial.Person.Field.HUMOR</h2>  
  1341. ';  
  1342.       if (humor) {  
  1343.         humorHtml = humorHtml + humor + '  
  1344. ';  
  1345.       }  
  1346.       else {  
  1347.         humorHtml = humorHtml + 'UNDEFINED  
  1348. ';  
  1349.       }  
  1350.       document.getElementById('view_HUMOR').innerHTML = humorHtml;  
  1351.     }  
  1352.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.LOOKING_FOR)) {  
  1353.       var lookingFor = data.getField(opensocial.Person.Field.LOOKING_FOR);  
  1354.       var lookingForHtml = '<h2>opensocial.Person.Field.LOOKING_FOR</h2>  
  1355. ';  
  1356.       if (lookingFor) {  
  1357.         for (xx in lookingFor) {  
  1358.           if (lookingFor[xx]) {  
  1359.             lookingForHtml = lookingForHtml + lookingFor[xx].getDisplayValue() + '  
  1360. ';  
  1361.           }  
  1362.         }  
  1363.       }  
  1364.       else {  
  1365.         lookingForHtml = lookingForHtml + 'UNDEFINED  
  1366. ';  
  1367.       }  
  1368.       document.getElementById('view_LOOKING_FOR').innerHTML = lookingForHtml;  
  1369.     }  
  1370.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.RELIGION)) {  
  1371.       var religion = data.getField(opensocial.Person.Field.RELIGION);  
  1372.       var religionHtml = '<h2>opensocial.Person.Field.RELIGION</h2>  
  1373. ';  
  1374.       if (religion) {  
  1375.         religionHtml = religionHtml + religion + '  
  1376. ';  
  1377.       }  
  1378.       else {  
  1379.         religionHtml = religionHtml + 'UNDEFINED  
  1380. ';  
  1381.       }  
  1382.       document.getElementById('view_RELIGION').innerHTML = religionHtml;  
  1383.     }  
  1384.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.POLITICAL_VIEWS)) {  
  1385.       var politicalViews = data.getField(opensocial.Person.Field.POLITICAL_VIEWS);  
  1386.       var politicalViewsHtml = '<h2>opensocial.Person.Field.POLITICAL_VIEWS</h2>  
  1387. ';  
  1388.       if (politicalViews) {  
  1389.         politicalViewsHtml = politicalViewsHtml + politicalViews + '  
  1390. ';  
  1391.       }  
  1392.       else {  
  1393.         politicalViewsHtml = politicalViewsHtml + 'UNDEFINED  
  1394. ';  
  1395.       }  
  1396.       document.getElementById('view_POLITICAL_VIEWS').innerHTML = politicalViewsHtml;  
  1397.   
  1398.     }  
  1399.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.HAS_APP)) {  
  1400.       var hasApp = data.getField(opensocial.Person.Field.HAS_APP);  
  1401.       var hasAppHtml = '<h2>opensocial.Person.Field.HAS_APP</h2>  
  1402. ';  
  1403.       if (hasApp) {  
  1404.         hasAppHtml = hasAppHtml + hasApp + '  
  1405. ';  
  1406.       }  
  1407.       else {  
  1408.         hasAppHtml = hasAppHtml + 'UNDEFINED  
  1409. ';  
  1410.       }  
  1411.       document.getElementById('view_HAS_APP').innerHTML = hasAppHtml;  
  1412.   
  1413.     }  
  1414.     if (env.supportsField(opensocial.Environment.ObjectType.PERSON, opensocial.Person.Field.NETWORK_PRESENCE)) {  
  1415.       var networkPresence = data.getField(opensocial.Person.Field.NETWORK_PRESENCE);  
  1416.       var networkPresenceHtml = '<h2>opensocial.Person.Field.NETWORK_PRESENCE</h2>  
  1417. ';  
  1418.       if (networkPresence) {  
  1419.         networkPresenceHtml = networkPresenceHtml + networkPresence.getDisplayValue() + '  
  1420. ';  
  1421.       }  
  1422.       else {  
  1423.         networkPresenceHtml = networkPresenceHtml + 'UNDEFINED  
  1424. ';  
  1425.       }  
  1426.       document.getElementById('view_NETWORK_PRESENCE').innerHTML = networkPresenceHtml;  
  1427.   
  1428.     }  
  1429.   
  1430.     // 自動調節  
  1431.     gadgets.window.adjustHeight();  
  1432.   };  
  1433.   
  1434.   gadgets.util.registerOnLoadHandler(requestGetOwnerProfile);  
  1435.   
  1436. </script>  
  1437.     <div id='view_ID'></div>  
  1438.     <div id='view_NAME'></div>  
  1439.     <div id='view_NICKNAME'></div>  
  1440.     <div id='view_THUMBNAIL_URL'></div>  
  1441.     <div id='view_PROFILE_URL'></div>  
  1442.     <div id='view_CURRENT_LOCATION'></div>  
  1443.     <div id='view_ADDRESSES'></div>  
  1444.     <div id='view_EMAILS'></div>  
  1445.     <div id='view_PHONE_NUMBERS'></div>  
  1446.     <div id='view_ABOUT_ME'></div>  
  1447.     <div id='view_STATUS'></div>  
  1448.     <div id='view_PROFILE_SONG'></div>  
  1449.     <div id='view_PROFILE_VIDEO'></div>  
  1450.     <div id='view_GENDER'></div>  
  1451.     <div id='view_SEXUAL_ORIENTATION'></div>  
  1452.     <div id='view_RELATIONSHIP_STATUS'></div>  
  1453.     <div id='view_AGE'></div>  
  1454.     <div id='view_DATE_OF_BIRTH'></div>  
  1455.     <div id='view_BODY_TYPE'></div>  
  1456.     <div id='view_ETHNICITY'></div>  
  1457.     <div id='view_SMOKER'></div>  
  1458.     <div id='view_DRINKER'></div>  
  1459.     <div id='view_CHILDREN'></div>  
  1460.     <div id='view_PETS'></div>  
  1461.     <div id='view_LIVING_ARRANGEMENT'></div>  
  1462.     <div id='view_TIME_ZONE'></div>  
  1463.     <div id='view_LANGUAGES_SPOKEN'></div>  
  1464.     <div id='view_JOBS'></div>  
  1465.     <div id='view_JOB_INTERESTS'></div>  
  1466.     <div id='view_SCHOOLS'></div>  
  1467.     <div id='view_INTERESTS'></div>  
  1468.     <div id='view_URLS'></div>  
  1469.     <div id='view_MUSIC'></div>  
  1470.     <div id='view_MOVIES'></div>  
  1471.     <div id='view_TV_SHOWS'></div>  
  1472.     <div id='view_BOOKS'></div>  
  1473.     <div id='view_ACTIVITIES'></div>  
  1474.     <div id='view_SPORTS'></div>  
  1475.     <div id='view_HEROES'></div>  
  1476.     <div id='view_QUOTES'></div>  
  1477.     <div id='view_CARS'></div>  
  1478.     <div id='view_FOOD'></div>  
  1479.     <div id='view_TURN_ONS'></div>  
  1480.     <div id='view_TURN_OFFS'></div>  
  1481.     <div id='view_TAGS'></div>  
  1482.     <div id='view_ROMANCE'></div>  
  1483.     <div id='view_SCARED_OF'></div>  
  1484.     <div id='view_HAPPIEST_WHEN'></div>  
  1485.     <div id='view_FASHION'></div>  
  1486.     <div id='view_HUMOR'></div>  
  1487.     <div id='view_LOOKING_FOR'></div>  
  1488.     <div id='view_RELIGION'></div>  
  1489.     <div id='view_POLITICAL_VIEWS'></div>  
  1490.     <div id='view_HAS_APP'></div>  
  1491.     <div id='view_NETWORK_PRESENCE'></div>  
  1492.   ]]>  
  1493.   </Content>  
  1494. </Module>  



えらく疲れた。。。
コード出力にはFireBugのconsole.logを使った。。
けど、、ねぇ。。

.

[Apache Shindig][お勉強][OpenSocial] メモ54 container.jsでPersonオブジェクトの全項目をsupported

あほっぽいけど、Personオブジェクトの全項目をShindigで"supported"にするための、
container.jsのsupportedFields。

  1.   "opensocial-0.8" : {  
  2.     "path" : "http://%host%/social",  
  3.     "domain" : "qsdn.co.jp",  
  4.     "enableCaja" : false,  
  5.     "supportedFields" : {  
  6.       "person" : [  
  7. "id",  
  8. "name",  
  9. "nickname",  
  10. "thumbnailUrl",  
  11. "profileUrl",  
  12. "currentLocation",  
  13. "addresses",  
  14. "emails",  
  15. "phoneNumbers",  
  16. "aboutMe",  
  17. "status",  
  18. "profileSong",  
  19. "profileVideo",  
  20. "gender",  
  21. "sexualOrientation",  
  22. "relationshipStatus",  
  23. "age",  
  24. /* birthday, dateOfBirthは同じもの */  
  25. "birthday",  
  26. "dateOfBirth",  
  27. "bodyType",  
  28. "ethnicity",  
  29. "smoker",  
  30. "drinker",  
  31. "children",  
  32. "pets",  
  33. "livingArrangement",  
  34. /* timeZone, utcOffsetは同じもの */  
  35. "timeZone",  
  36. "utcOffset",  
  37. "languagesSpoken",  
  38. /* organizations, jobs, schoolsは同じもの */  
  39. "organizations",  
  40. "jobs",  
  41. "jobInterests",  
  42. "schools",  
  43. "interests",  
  44. "urls",  
  45. "music",  
  46. "movies",  
  47. "tvShows",  
  48. "books",  
  49. "activities",  
  50. "sports",  
  51. "heroes",  
  52. "quotes",  
  53. "cars",  
  54. "food",  
  55. "turnOns",  
  56. "turnOffs",  
  57. "tags",  
  58. "romance",  
  59. "scaredOf",  
  60. "happiestWhen",  
  61. "fashion",  
  62. "humor",  
  63. "lookingFor",  
  64. "religion",  
  65. "politicalViews",  
  66. "hasApp",  
  67. "networkPresence"  
  68.        ],  
  69.        "name" : [  
  70. "familyName",  
  71. "givenName",  
  72. "additionalName",  
  73. "honorificPrefix",  
  74. "honorificSuffix",  
  75. "unstructured"  
  76. ],  
  77.        "address" : [  
  78. "type",  
  79. "unstructuredAddress",  
  80. "poBox",  
  81. "streetAddress",  
  82. "extendedAddress",  
  83. "region",  
  84. "locality",  
  85. "postalCode",  
  86. "country",  
  87. "latitude",  
  88. "longitude"  
  89. ],  
  90.        "organization" : [  
  91. "name",  
  92. "title",  
  93. "description",  
  94. "field",  
  95. "subField",  
  96. "startDate",  
  97. "endDate",  
  98. "salary",  
  99. "address",  
  100. "webpage"  
  101. ],  
  102.        "url" : [  
  103. "type",  
  104. "linkText",  
  105. "address"  
  106. ],  
  107.        "email" : [  
  108. "type",  
  109. "address"  
  110. ],  
  111.        "phone" : [  
  112. "type",  
  113. "number"  
  114. ],  
  115.        "bodyType" : [  
  116. "build",  
  117. "height",  
  118. "weight",  
  119. "eyeColor",  
  120. "hairColor"  
  121. ],  
  122.        "activity" : ["id""title"]  
  123.   
  124.     }  
  125.   },  


ちなみに、FireBug使った。

.

[Apache Shindig][お勉強][OpenSocial] メモ53 container.jsで定義した値を使ってJava側supportsField()を実装してみる

JavaScript APIでは、opensocial.getEnvironment().supportsField()
というメソッドが用意されているが、ここで元となるsupportedField(多分container.jsで定義)
を使って、Java側でsupportsFieldをやってみた。

container.jsで定義された値は、
ContainerConfigというクラスに保存されているので、そこからsupportedFieldを取得する。
取得したsupportedFieldをひとつひとつ見ていって、サポートしているかどうか判断する。

で、コードはこんな感じ。

  1. public boolean supportsField(String container, String objectName, String fieldTree) {  
  2.   assert fieldTree != null;  
  3.   assert objectName != null;  
  4.   assert container != null;  
  5.   
  6.   if (logger.isDebugEnabled()) {  
  7.     logger.debug("サポートチェック開始:"  
  8.       + "objectName:[" + objectName + "]:"  
  9.       + "fieldTree:[" + fieldTree + "]:"  
  10.     );  
  11.   }  
  12.   
  13.   String jsonString = "${Cur['gadgets.features']['opensocial-0.8'].supportedFields." + objectName + "}";  
  14.   String[] field = null;  
  15.   if (fieldTree.indexOf(".")!= -1) {  
  16.     field = fieldTree.split("\\.");  
  17.   }  
  18.   else {  
  19.     field = new String[1];  
  20.     field[0] = fieldTree;  
  21.   }  
  22.   List<Object> supportedFieldList = containerConfig.getList(container, jsonString);  
  23.   for (int ii=0,length = field.length; ii<length; ii++) {  
  24.     for (Object obj: supportedFieldList) {  
  25.       if (obj instanceof String) {  
  26.         if (field[ii].equals(obj)) {  
  27.           if (logger.isDebugEnabled()) {  
  28.             logger.debug("サポートチェック終了:対応(String):"  
  29.               + "objectName:[" + objectName + "]:"  
  30.               + "fieldTree:[" + fieldTree + "]:"  
  31.             );  
  32.           }  
  33.           return true;  
  34.         }  
  35.       }  
  36.       else if (obj instanceof ImmutableMap) {  
  37.         ImmutableMap map = (ImmutableMap) obj;  
  38.         List<Object> tmp = (List<Object>)map.get(field[ii]);  
  39.         if (tmp != null) {  
  40.           if (ii == length - 1) {  
  41.             if (logger.isDebugEnabled()) {  
  42.               logger.debug("サポートチェック終了:対応(Map):"  
  43.                 + "objectName:[" + objectName + "]:"  
  44.                 + "fieldTree:[" + fieldTree + "]:"  
  45.               );  
  46.             }  
  47.             return true;  
  48.           }  
  49.           supportedFieldList = tmp;  
  50.           break;  
  51.         }  
  52.       }  
  53.       else {  
  54.         assert false;  
  55.       }  
  56.     }  
  57.   }  
  58.   if (logger.isDebugEnabled()) {  
  59.     logger.debug("サポートチェック終了:非対応:"  
  60.       + "objectName:[" + objectName + "]:"  
  61.       + "fieldTree:[" + fieldTree + "]:"  
  62.     );  
  63.   }  
  64.   return false;  
  65. }  

containerConfigはプロパティとして、Injectされているものとした。
もっといい方法があるかとは思う。

そもそも、container.jsで記述するサポートする項目は、
既存のSNSなりの項目に合わせるので、Javaから判断する必要は無いっぽい。

一応これで、
  1. if (supportsField(token.getContainer(), "person", Person.Field.ADDRESSES)) {  

などと、使用することができる。

ちなみに、Person.Field.NAMEのADDITIONAL_NAMEがサポートされているかどうか、
などといった、ネストした項目もチェック可能。
  1. if (supportsField(token.getContainer(), "person", Person.Field.NAME + "." + Name.Field.ADDTIONAL_NAME)) {  

なんてな風にしてみた。


--
なんとなく違う気がする。
  1. Person.Field.NAME + "." + Name.Field.ADDTIONAL_NAME  

という部分が独自すぎ。。

container.jsの
  1. "supportedFields" : {  
  2.    "person" : ["id", {"name" : ["familyName""givenName""unstructured"]}, "thumbnailUrl""profileUrl"],  
  3.    "activity" : ["id""title"]  
  4. }  

を、
  1. "supportedFields" : {  
  2.    "person" : ["id""name""thumbnailUrl""profileUrl"],  
  3.    "name" : ["familyName""givenName""unstructured"],  
  4.    "activity" : ["id""title"]  
  5. }  

として、
  1. if (supportsField(token.getContainer(), "name", Name.Field.ADDTIONAL_NAME)) {  

なんてした方がいいような気がする。

.

[mod_chxj][携帯][deviceatlas] deviceatlas徘徊中

deviceatlasというサイトを、
http://sourceforge.jp/forum/forum.php?thread_id=23365&forum_id=6550
で教えてもらった。

googleで調べると、結構有名っぽい?

早速freeユーザ登録して、サイト内を徘徊中。

.

[OpenSocial][その他] 日本でのOpenSocial

日本でのOpenSocialで名があるところは、、

mixi
NTTレゾナント

あたりですかねー。

有名人は、

田中よういちろうさん
えーじさん

あたりですかねー。

mixiとGoo独占状態っぽい。

OpenPNEの方々はどうなんだろうか。。

調べてみようっと。
.

[Apache Shindig][お勉強][OpenSocial] メモ52 container.jsで定義した値をJavaから取得

container.jsで定義した設定をJavaで取得する。

必要なクラスは、


org.apache.shindig.config.ContainerConfig



で、たとえば、
gadgets.featuresのcore.ioがほしければ、

  1. import org.apache.shindig.config.ContainerConfig;  
  2. import com.google.inject.Inject;  
  3. import java.util.Map;  
  4.   
  5. public Aaa {  
  6.   
  7.   private ContainerConfig containerConfig;  
  8.   
  9.   @Inject  
  10.   public Aaa(ContainerConfig containerConfig) {  
  11.     this.containerConfig = containerConfig;  
  12.   }  
  13.   
  14.   public proc() {  
  15.     Map<String, Object> coreIo = containerConfig.getMap("default""gadgets.features").get("core.io");      
  16.   
  17.     for (String key : coreIo) {  
  18.       System.out.println("key:[" + key + "]");  
  19.     }  
  20.   }  
  21. }  


なんて感じで取れる。もちろん上記はあくまでイメージ。
containerConfig.getMapの第一引数はコンテナ名。
Shindigデフォルトだと"default"になっている。

そんだけ。
.

2009年7月17日金曜日

[Apache Shindig][お勉強][OpenSocial] メモ51 opensocial.Person.Field.PROFILE_URL

opensocial.newFetchPersonRequest使って、全項目取得すると、
サーバ側でセットしていないはずの
opensocial.Person.Field.URLS
が取得できてしまう。
どんな値が入っているかというと、
opensocial.Person.Field.PROFILE_URL
でセットした値。

なんでかと思って、ソース見てみた。
すると、org.apache.shindig.social.core.model.PersonImplに、

  1. public String getProfileUrl() {  
  2.   Url url = getListFieldWithType(PROFILE_URL_TYPE, getUrls());  
  3.   return url == null ? null : url.getValue();  
  4. }  
  5.   
  6. public void setProfileUrl(String profileUrl) {  
  7.   Url url = getListFieldWithType(PROFILE_URL_TYPE, getUrls());  
  8.   if (url != null) {  
  9.     url.setValue(profileUrl);  
  10.   } else {  
  11.     setUrls(addListField(new UrlImpl(profileUrl, null, PROFILE_URL_TYPE), getUrls()));  
  12.   }  
  13. }  

とsetProfileUrlメソッドはなっていて、さらに、
getUrlsは、
  1. public List<Url> getUrls() {  
  2.   return urls;  
  3. }  

となっている。

ほっほぅ。
なるほど。

でも、setUrlsを見てみると、、
  1. public void setUrls(List<Url> urls) {  
  2.   this.urls = urls;  
  3. }  

となっているんで、
setProfileUrlをコールした後に、setUrlsをコールしてしまうと、
setProfileUrlでセットした値がどっかへいってしまう。。

PersonImplをオリジナルで実装するか、もしくは、
setProfileUrlを必ずsetUrlsの前でコールしないとだめみたい。

.

[OpenSocial][本] OpenSocial入門

田中よういちろうさんの「OpenSocial入門」という本を買った。

熟読ものです。

.

2009年7月16日木曜日

[Apache Shindig][お勉強][OpenSocial] メモ50 opensocial.newFetchPersonRequest

opensocial.newFetchPersonRequestしてみた。

  1. var params = {};  
  2. params[opensocial.DataRequest.PeopleRequestFields.PROFILE_DETAILS] = [  
  3.   opensocial.Person.Field.ID,  
  4.   opensocial.Person.Field.NAME,  
  5.   opensocial.Person.Field.NICKNAME,  
  6.   opensocial.Person.Field.THUMBNAIL_URL,  
  7.   opensocial.Person.Field.PROFILE_URL,  
  8.   opensocial.Person.Field.CURRENT_LOCATION,  
  9.   opensocial.Person.Field.ADDRESSES,  
  10.   opensocial.Person.Field.EMAILS,  
  11.   opensocial.Person.Field.PHONE_NUMBERS,  
  12.   opensocial.Person.Field.ABOUT_ME,  
  13.   opensocial.Person.Field.STATUS,  
  14.   opensocial.Person.Field.PROFILE_SONG,  
  15.   opensocial.Person.Field.PROFILE_VIDEO,  
  16.   opensocial.Person.Field.GENDER,  
  17.   opensocial.Person.Field.SEXUAL_ORIENTATION,  
  18.   opensocial.Person.Field.RELATIONSHIP_STATUS,  
  19.   opensocial.Person.Field.AGE,  
  20.   opensocial.Person.Field.DATE_OF_BIRTH,  
  21.   opensocial.Person.Field.BODY_TYPE,  
  22.   opensocial.Person.Field.ETHNICITY,  
  23.   opensocial.Person.Field.SMOKER,  
  24.   opensocial.Person.Field.DRINKER,  
  25.   opensocial.Person.Field.CHILDREN,  
  26.   opensocial.Person.Field.PETS,  
  27.   opensocial.Person.Field.LIVING_ARRANGEMENT,  
  28.   opensocial.Person.Field.TIME_ZONE,  
  29.   opensocial.Person.Field.LANGUAGES_SPOKEN,  
  30.   opensocial.Person.Field.JOBS,  
  31.   opensocial.Person.Field.JOB_INTERESTS,  
  32.   opensocial.Person.Field.SCHOOLS,  
  33.   opensocial.Person.Field.INTERESTS,  
  34.   opensocial.Person.Field.URLS,  
  35.   opensocial.Person.Field.MUSIC,  
  36.   opensocial.Person.Field.MOVIES,  
  37.   opensocial.Person.Field.TV_SHOWS,  
  38.   opensocial.Person.Field.BOOKS,  
  39.   opensocial.Person.Field.ACTIVITIES,  
  40.   opensocial.Person.Field.SPORTS,  
  41.   opensocial.Person.Field.HEROES,  
  42.   opensocial.Person.Field.QUOTES,  
  43.   opensocial.Person.Field.CARS,  
  44.   opensocial.Person.Field.FOOD,  
  45.   opensocial.Person.Field.TURN_ONS,  
  46.   opensocial.Person.Field.TURN_OFFS,  
  47.   opensocial.Person.Field.TAGS,  
  48.   opensocial.Person.Field.ROMANCE,  
  49.   opensocial.Person.Field.SCARED_OF,  
  50.   opensocial.Person.Field.HAPPIEST_WHEN,  
  51.   opensocial.Person.Field.FASHION,  
  52.   opensocial.Person.Field.HUMOR,  
  53.   opensocial.Person.Field.LOOKING_FOR,  
  54.   opensocial.Person.Field.RELIGION,  
  55.   opensocial.Person.Field.POLITICAL_VIEWS,  
  56.   opensocial.Person.Field.HAS_APP,  
  57.   opensocial.Person.Field.NETWORK_PRESENCE  
  58. ];  
  59. var req = opensocial.newDataRequest();  
  60. req.add(req.newFetchPersonRequest(  
  61.           opensocial.IdSpec.PersonId.OWNER,  
  62.           params),  
  63.         "get_owner");  
  64. req.send(handleRequestGetOwnerProfile);  

な感じに。
container.jsで定義したはずの
  1. "supportedFields" : {  
  2.    "person" : ["id", {"name" : ["familyName""givenName""unstructured"]}, "thumbnailUrl""profileUrl"],  
  3.    "activity" : ["id""title"]  
  4. }  

はここでは効いていないようで、リクエストとして指定した項目分、送信される。
サーバ側でも特にチェックしている様子はないので、serviceの実装時にチェックしなきゃいけない
っぽい。

最初、サーバからのレスポンスから、opensocial.Person.Field.JOBSの値が取得できなかった。
opensocial.Organization.Field.TYPEの項目に、jobまたはschoolを指定していなかったため。
opensocial.Organization.Field.TYPEには、
1) job
2) school
のいずれかを文字列として指定していないとダメらしい。

さらに、
opensocial.Organization.Field.ADDRESS
も現状のshindig-1.1(trunk)では、opensocial.Addressオブジェクトとしては
取得できない。

たぶん、開発中または、参照という位置づけなのか、Organization中のAddressはJSONオブジェクトが
そのまま入っている。
それだと、つまらないので、

features/opensocial-reference/organization.js


  1. opensocial.Organization = function(opt_params) {  
  2.   this.fields_ = opt_params || {};  
  3. };  


  1. opensocial.Organization = function(opt_params) {  
  2.   this.fields_ = opt_params || {};  
  3.   if (this.fields_ && this.fields_["address"] && ! this.fields_["address"].getField) {  
  4.     this.constructObject(this.fields_, "address", opensocial.Address);  
  5.   }  
  6. };  

に書き換え、さらに、その下に
  1. opensocial.Organization.prototype.constructObject = function(map, fieldName, className) {  
  2.   var fieldValue = map[fieldName];  
  3.   if (fieldValue) {  
  4.     map[fieldName] = new className(fieldValue);  
  5.   }  
  6. };  

なんてのを、どっかからコピーして追加。

これで一応、Organization.Addressもopensocial.Addressオブジェクトとして
扱える。
JavaScriptは良くわからないので正しいか知らない。

opensocial.Person.Field.JOBSとopensocial.Person.Field.SCHOOLSはともに、
organizationsという名のパラメータでサーバ側に送信される。
だもんで、現状では、両方指定しても無意味。
これはたぶん、

features/opensocial-base/fieldtranslations.js

の、
  1. FieldTranslations.translateJsPersonFieldsToServerFields = function(fields) {  
  2.   for (var i = 0; i < fields.length; i++) {  
  3.     if (fields[i] == 'dateOfBirth') {  
  4.       fields[i] = 'birthday';  
  5.     } else if (fields[i] == 'timeZone') {  
  6.       fields[i] = 'utcOffset';  
  7.     } else if (fields[i] == 'jobs') {  
  8.       fields[i] = 'organizations';  
  9.     } else if (fields[i] == 'schools') {  
  10.       fields[i] = 'organizations';  
  11.     }  
  12.   }  
  13.   
  14.   // displayName and id always need to be requested  
  15.   fields.push('id');  
  16.   fields.push('displayName');  
  17. };  

らへんぽい。

organizationsの応答には、type='job'、type='school'の両方を入れておけばよいかも。


.

2009年7月15日水曜日

[Apache Shindig][お勉強][OpenSocial] メモ49 opensocial.Address.Field.EXTENDED_ADDRESSとopensocial.Address.Field.POBOX

http://www.opensocial.org/Technical-Resources/opensocial-spec-v09/OpenSocial-Specification.html#opensocial.Address.Field

を見ると、
opensocial.Address.Field.EXTENDED_ADDRESS、
opensocial.Address.Field.POBOX
は存在するらしいんだけど、
shindigのtrunkのjava側のソースにはない。。

まだ実装されていないのかと思いきや、

リビジョン688893で、削除されている。。

これはいったいなんじゃらほい。

--
というか、ちゃんとメッセージに書いてあるじゃん。


the poBox and extendedAddress fields on the address object have been removed. containers should now put that information into streetAddress which can be multiline.

だそうで。
.

2009年7月14日火曜日

[Apache Shindig][お勉強][OpenSocial] メモ48 opensocial.requestPermissionを実装してみた

Shindigデフォルトだと、requestPermissionは必ず


opensocial.ResponseItem.Error.UNAUTHORIZED

が返ってくる。

ちっとも面白くないので、実装してみた。

実装手順は以下のとおり。

1) features/opensocial-jsonrpc/jsonrpccontainer.jsを拡張し、requestPermissionの際はサーバに問い合わせるようにする。
2) サーバ側を実装する。

そんだけ。jsonrpcじゃないけど、とりあえず。
正しい手順かどうかは知らない。

で、jsonrpccontainer.js。
  1. JsonRpcContainer.prototype.requestPermissionUrl_ = 'container/requestPermission.json';  
  2. JsonRpcContainer.prototype.requestPermission = function(permissions, reason, opt_callback) {  
  3.   var ret = {};  
  4.   var token = shindig.auth.getSecurityToken();  
  5.   if (window.confirm("ガジェットがあなたのプロフィール情報の使用許可を求めています。\n【理由】" + reason + "\nここで許可するとあなたの全プロフィール情報が利用可能になり  
  6. ます。許可しますか?")) {  
  7.     var parm = {};  
  8.     parm.permission = permissions;  
  9.     parm.st = token;  
  10.     $.ajax({  
  11.       type: "GET",  
  12.       url: this.requestPermissionUrl_,  
  13.       cache: false,  
  14.       async: false,  
  15.       data: parm,  
  16.       dataType: 'json',  
  17.       success: function(json) {  
  18.         ret.result = json;  
  19.       }  
  20.     });  
  21.     if (ret.result.errorCode === 'OK') {  
  22.       opt_callback(new opensocial.ResponseItem(  
  23.           nullnullnullnull));  
  24.       return;  
  25.     }  
  26.   }  
  27.   opt_callback(new opensocial.ResponseItem(  
  28.       nullnull,  opensocial.ResponseItem.Error.UNAUTHORIZED, null));  
  29. };  

JavaScript要勉強。とりあえずはこんな感じで。

で、Java側。
環境はShindig+SpringFramework2.5(Java)。
まずはコントローラ。
  1. /** 
  2.  * opensocial.requestPermissionのサーバ側実装. 
  3.  * 
  4.  * @author Atsushi Konno(QSDN 
  5.  */  
  6. public class RequestPermissionController extends AbstractController {  
  7.   
  8.   protected final Log logger = LogFactory.getLog(RequestPermissionController.class);  
  9.   protected String viewName = "";  
  10.   
  11.   protected Logic logic;  
  12.   private HttpUserSessionService session;  
  13.   
  14.   protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception {  
  15.     logger.info("パーミッション要求コントローラ開始");  
  16.     String[] permissions = RequestUtils.getRequiredStringParameters(request, "permission");  
  17.   
  18.     if (logger.isDebugEnabled()) {  
  19.       for (int ii=0, length = permissions.length; ii<length; ii++) {  
  20.         logger.info("permission:[" + permissions[ii] + "]");  
  21.       }  
  22.     }  
  23.     SecurityToken token  = logic.getSecurityToken(request);  
  24.     long moduleId = token.getModuleId();  
  25.   
  26.     String sessionId = null;  
  27.     try {  
  28.       sessionId = session.getId(request);  
  29.     }  
  30.     catch (UserSessionTimeOutException utoe) {  
  31.     }  
  32.     ModelAndView mav = new ModelAndView(viewName);  
  33.   
  34.   
  35.     if (logic.requestPermission(sessionId, moduleId, permissions)) {  
  36.       mav.addObject("errorCode""OK");  
  37.     }  
  38.     else {  
  39.       mav.addObject("errorCode""NG");  
  40.     }  
  41.   
  42.     logger.info("パーミッション要求コントローラ終了");  
  43.   
  44.     return mav;  
  45.   }  
  46.   
  47.   
  48.   public Logic getLogic() {  
  49.       return logic;  
  50.   }  
  51.   public void setLogic(Logic logic) {  
  52.       this.logic = logic;  
  53.   }  
  54.   
  55.   /** 
  56.    * Get viewName. 
  57.    * 
  58.    * @return viewName as String. 
  59.    */  
  60.   public String getViewName() {  
  61.       return viewName;  
  62.   }  
  63.   
  64.   /** 
  65.    * Set viewName. 
  66.    * 
  67.    * @param viewName the value to set. 
  68.    */  
  69.   public void setViewName(String viewName) {  
  70.       this.viewName = viewName;  
  71.   }  
  72.   
  73.   /** 
  74.    * Get session. 
  75.    * 
  76.    * @return session as HttpUserSessionService. 
  77.    */  
  78.   public HttpUserSessionService getSession() {  
  79.       return session;  
  80.   }  
  81.   
  82.   /** 
  83.    * Set session. 
  84.    * 
  85.    * @param session the value to set. 
  86.    */  
  87.   public void setSession(HttpUserSessionService session) {  
  88.       this.session = session;  
  89.   }  
  90. }  
  91.                       

とりあえずはこんな感じ。

で、そのJSP。
  1. {  
  2.   "errorCode""${errorCode}"  
  3. }  

そんだけ。

で、本体のlogic。
  1. /** 
  2.  * opensocial.requestPermissionに対応するサーバ側実装 
  3.  * 
  4.  * @param sessionId sessionId 
  5.  * @param moduleId ガジェットのID 
  6.  * @param permissions パーミッションの配列 
  7.  */  
  8. public boolean requestPermission(String sessionId, long moduleId, String[] permissions) throws DataAccessException {  
  9.   assert sessionId != null;  
  10.   assert permissions != null && permissions.length == 1;  
  11.   
  12.   GmsPerson viewer = getUser();  
  13.   if (viewer == null) {  
  14.     if (logger.isDebugEnabled()) {  
  15.       logger.debug("Guestユーザのため、requestPermissionできない");  
  16.     }  
  17.     return false;  
  18.   }  
  19.   
  20.   /*=======================================================================*/  
  21.   /* ロック                                                                */  
  22.   /*=======================================================================*/  
  23.   gmsPersonDao.select(viewer.getId(), true);  
  24.   /*=======================================================================*/  
  25.   /* すでにrequestPermissionされているか.                                  */  
  26.   /*=======================================================================*/  
  27.   for (int ii=0, length = permissions.length; ii<length; ii++) {  
  28.     try {  
  29.       gmsSessionPermitDao.selectBySessionIdAndModuleIdAndPermission(sessionId, moduleId, permissions[ii]);  
  30.     }  
  31.     catch (ObjectRetrievalFailureException ex) {  
  32.       GmsSessionPermit permit = new GmsSessionPermit();  
  33.       permit.setId(UuidGenerator.compress(UuidGenerator.generate()));  
  34.       permit.setSessionId(sessionId);  
  35.       permit.setModuleId(moduleId);  
  36.       permit.setPermission(permissions[ii]);  
  37.       permit.setCreatedAt(new Timestamp(System.currentTimeMillis()));  
  38.       gmsSessionPermitDao.insert(permit);  
  39.     }  
  40.   }  
  41.   
  42.   return true;  
  43. }  

gmsSessionPermitテーブルは、qurtzなんかで定期的に削除。ログアウトしても削除。
GuestはrequestPermissionしてもなにもしない。
viewerは現在ログイン中のユーザかもしくはGuestユーザ。
viewerがGuestで無い場合は、viewerでロック。

で、動かした。

それっぽく動いた。
そんだけ。

--
ガジェットXMLは、
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <Module>  
  3.   <ModulePrefs title="opensocial.requestPermission()">  
  4.     <Require feature="opensocial-0.8" />  
  5.   </ModulePrefs>  
  6.   <Content type="html"><![CDATA[ 
  7.     <h1>opensocial.requestPermission()</h1> 
  8. <div id='env'></div> 
  9. <script type="text/javascript"> 
  10.  
  11.   if (opensocial.hasPermission(opensocial.Permission.VIEWER)) { 
  12.     $('#env').append('<h1>許可されてるよぉーん</h1>'); 
  13.   } 
  14.   else { 
  15.     $('#env').append('<h1>許可されてないよーん</h1>'); 
  16.     opensocial.requestPermission([opensocial.Permission.VIEWER], 
  17.                                  "なんとなく", 
  18.                                  function(/*pensocial.ResponseItem*/res) { 
  19.                                    if (res.hadError()) { 
  20.                                      switch(res.getErrorCode()) { 
  21.                                      case opensocial.ResponseItem.Error.NOT_IMPLEMENTED : 
  22.                                        $('#env').append('<h1>NOT IMPLEMENTEDだってさ</h1>'); 
  23.                                        break; 
  24.                                      default: 
  25.                                        $('#env').append('<h1>' + res.getErrorMessage() + 'だってさ</h1>'); 
  26.                                        break; 
  27.                                      } 
  28.                                    } 
  29.                                    else { 
  30.                                      $('#env').append('<h1>うまくいったっぽいよーん</h1>'); 
  31.                                    } 
  32.                                  }); 
  33.   } 
  34. </script> 
  35.   ]]>  
  36.   </Content>  
  37. </Module>  


.