123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- /*
- Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
- Available via Academic Free License >= 2.1 OR the modified BSD license.
- see: http://dojotoolkit.org/license for details
- */
- if(!dojo._hasResource["dojox.data.PicasaStore"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
- dojo._hasResource["dojox.data.PicasaStore"] = true;
- dojo.provide("dojox.data.PicasaStore");
- dojo.require("dojo.io.script");
- dojo.require("dojo.data.util.simpleFetch");
- dojo.require("dojo.date.stamp");
- dojo.declare("dojox.data.PicasaStore", null, {
- constructor: function(/*Object*/args){
- // summary:
- // Initializer for the PicasaStore store.
- // description:
- // The PicasaStore is a Datastore interface to one of the basic services
- // of the Picasa service, the public photo feed. This does not provide
- // access to all the services of Picasa.
- // This store cannot do * and ? filtering as the picasa service
- // provides no interface for wildcards.
- if(args && args.label){
- this.label = args.label;
- }
- if(args && "urlPreventCache" in args){
- this.urlPreventCache = args.urlPreventCache?true:false;
- }
- if(args && "maxResults" in args){
- this.maxResults = parseInt(args.maxResults);
- if(!this.maxResults){
- this.maxResults = 20;
- }
- }
- },
- _picasaUrl: "http://picasaweb.google.com/data/feed/api/all",
- _storeRef: "_S",
- //label: string
- //The attribute to use from the picasa item as its label.
- label: "title",
- //urlPreventCache: boolean
- //Flag denoting if preventCache should be passed to dojo.io.script.
- urlPreventCache: false,
- //maxResults: Define out how many results to return for a fetch.
- maxResults: 20,
- _assertIsItem: function(/* item */ item){
- // summary:
- // This function tests whether the item passed in is indeed an item in the store.
- // item:
- // The item to test for being contained by the store.
- if(!this.isItem(item)){
- throw new Error("dojox.data.PicasaStore: a function was passed an item argument that was not an item");
- }
- },
- _assertIsAttribute: function(/* attribute-name-string */ attribute){
- // summary:
- // This function tests whether the item passed in is indeed a valid 'attribute' like type for the store.
- // attribute:
- // The attribute to test for being contained by the store.
- if(typeof attribute !== "string"){
- throw new Error("dojox.data.PicasaStore: a function was passed an attribute argument that was not an attribute name string");
- }
- },
- getFeatures: function(){
- // summary:
- // See dojo.data.api.Read.getFeatures()
- return {
- 'dojo.data.api.Read': true
- };
- },
- getValue: function(item, attribute, defaultValue){
- // summary:
- // See dojo.data.api.Read.getValue()
- var values = this.getValues(item, attribute);
- if(values && values.length > 0){
- return values[0];
- }
- return defaultValue;
- },
- getAttributes: function(item){
- // summary:
- // See dojo.data.api.Read.getAttributes()
- return ["id", "published", "updated", "category", "title$type", "title",
- "summary$type", "summary", "rights$type", "rights", "link", "author",
- "gphoto$id", "gphoto$name", "location", "imageUrlSmall", "imageUrlMedium",
- "imageUrl", "datePublished", "dateTaken","description"];
- },
- hasAttribute: function(item, attribute){
- // summary:
- // See dojo.data.api.Read.hasAttributes()
- if(this.getValue(item,attribute)){
- return true;
- }
- return false;
- },
- isItemLoaded: function(item){
- // summary:
- // See dojo.data.api.Read.isItemLoaded()
- return this.isItem(item);
- },
- loadItem: function(keywordArgs){
- // summary:
- // See dojo.data.api.Read.loadItem()
- },
- getLabel: function(item){
- // summary:
- // See dojo.data.api.Read.getLabel()
- return this.getValue(item,this.label);
- },
-
- getLabelAttributes: function(item){
- // summary:
- // See dojo.data.api.Read.getLabelAttributes()
- return [this.label];
- },
- containsValue: function(item, attribute, value){
- // summary:
- // See dojo.data.api.Read.containsValue()
- var values = this.getValues(item,attribute);
- for(var i = 0; i < values.length; i++){
- if(values[i] === value){
- return true;
- }
- }
- return false;
- },
- getValues: function(item, attribute){
- // summary:
- // See dojo.data.api.Read.getValue()
- this._assertIsItem(item);
- this._assertIsAttribute(attribute);
- if(attribute === "title"){
- return [this._unescapeHtml(item.title)];
- }else if(attribute === "author"){
- return [this._unescapeHtml(item.author[0].name)];
- }else if(attribute === "datePublished"){
- return [dojo.date.stamp.fromISOString(item.published)];
- }else if(attribute === "dateTaken"){
- return [dojo.date.stamp.fromISOString(item.published)];
- }else if(attribute === "updated"){
- return [dojo.date.stamp.fromISOString(item.updated)];
- }else if(attribute === "imageUrlSmall"){
- return [item.media.thumbnail[1].url];
- }else if(attribute === "imageUrl"){
- return [item.content$src];
- }else if(attribute === "imageUrlMedium"){
- return [item.media.thumbnail[2].url];
- }else if(attribute === "link"){
- return [item.link[1]];
- }else if(attribute === "tags"){
- return item.tags.split(" ");
- }else if(attribute === "description"){
- return [this._unescapeHtml(item.summary)];
- }
- return [];
- },
- isItem: function(item){
- // summary:
- // See dojo.data.api.Read.isItem()
- if(item && item[this._storeRef] === this){
- return true;
- }
- return false;
- },
-
- close: function(request){
- // summary:
- // See dojo.data.api.Read.close()
- },
- _fetchItems: function(request, fetchHandler, errorHandler){
- // summary:
- // Fetch picasa items that match to a query
- // request:
- // A request object
- // fetchHandler:
- // A function to call for fetched items
- // errorHandler:
- // A function to call on error
- if(!request.query){
- request.query={};
- }
- //Build up the content to send the request for.
- var content = {alt: "jsonm", pp: "1", psc: "G"};
- content['start-index'] = "1";
- if(request.query.start){
- content['start-index'] = request.query.start;
- }
- if(request.query.tags){
- content.q = request.query.tags;
- }
- if(request.query.userid){
- content.uname = request.query.userid;
- }
- if(request.query.userids){
- content.ids = request.query.userids;
- }
- if(request.query.lang){
- content.hl = request.query.lang;
- }
- content['max-results'] = this.maxResults;
- //Linking this up to Picasa is a JOY!
- var self = this;
- var handle = null;
- var myHandler = function(data){
- if(handle !== null){
- dojo.disconnect(handle);
- }
- //Process the items...
- fetchHandler(self._processPicasaData(data), request);
- };
- var getArgs = {
- url: this._picasaUrl,
- preventCache: this.urlPreventCache,
- content: content,
- callbackParamName: 'callback',
- handle: myHandler
- };
- var deferred = dojo.io.script.get(getArgs);
-
- deferred.addErrback(function(error){
- dojo.disconnect(handle);
- errorHandler(error, request);
- });
- },
- _processPicasaData: function(data){
- var items = [];
- if(data.feed){
- items = data.feed.entry;
- //Add on the store ref so that isItem can work.
- for(var i = 0; i < items.length; i++){
- var item = items[i];
- item[this._storeRef] = this;
- }
- }
- return items;
- },
- _unescapeHtml: function(str){
- // summary: Utility function to un-escape XML special characters in an HTML string.
- // description: Utility function to un-escape XML special characters in an HTML string.
- // str: String.
- // The string to un-escape
- // returns: HTML String converted back to the normal text (unescaped) characters (<,>,&, ", etc,).
- //
- //TODO: Check to see if theres already compatible escape() in dojo.string or dojo.html
- if(str){
- str = str.replace(/&/gm, "&").replace(/</gm, "<").replace(/>/gm, ">").replace(/"/gm, "\"");
- str = str.replace(/'/gm, "'");
- }
- return str;
- }
- });
- dojo.extend(dojox.data.PicasaStore,dojo.data.util.simpleFetch);
- }
|