-rw-r--r-- | content/fireflix.js | 53 |
1 files changed, 37 insertions, 16 deletions
diff --git a/content/fireflix.js b/content/fireflix.js index 7291b68..78e56c2 100644 --- a/content/fireflix.js +++ b/content/fireflix.js | |||
@@ -1,994 +1,1015 @@ | |||
1 | function splitascii(s) { | 1 | function splitascii(s) { |
2 | var rv=''; | 2 | var rv=''; |
3 | for(var i=0;i<s.length;++i) { | 3 | for(var i=0;i<s.length;++i) { |
4 | var w = s.charCodeAt(i); | 4 | var w = s.charCodeAt(i); |
5 | rv += String.fromCharCode( | 5 | rv += String.fromCharCode( |
6 | w&0xff, (w>>8)&0xff ); | 6 | w&0xff, (w>>8)&0xff ); |
7 | } | 7 | } |
8 | return rv; | 8 | return rv; |
9 | } | 9 | } |
10 | 10 | ||
11 | 11 | ||
12 | var fireflix = { | 12 | var fireflix = { |
13 | flickr: new Flickr(), | 13 | flickr: new Flickr(), |
14 | init: function() { | 14 | init: function() { |
15 | pull_elements(this,document,[ | 15 | pull_elements(this,document,[ |
16 | 'cmd_auth_auth','cmd_auth_done','cmd_auth_unauth', | 16 | 'cmd_auth_auth','cmd_auth_done','cmd_auth_unauth', |
17 | 'menu_auth_done','b_auth','b_auth_done','auth_info', | 17 | 'menu_auth_done','b_auth','b_auth_done','auth_info', |
18 | 'loc_strings','cmd_set_props' | 18 | 'loc_strings','cmd_set_props' |
19 | ]); | 19 | ]); |
20 | this.build_menus(); | 20 | this.build_menus(); |
21 | this.foundphotos.init(this); | 21 | this.foundphotos.init(this); |
22 | this.photosets.init(this); | 22 | this.photosets.init(this); |
23 | this.photoset.init(this); | 23 | this.photoset.init(this); |
24 | this.uploads.init(this); | 24 | this.uploads.init(this); |
25 | this.uploadObserver.init(this); | 25 | this.uploadObserver.init(this); |
26 | this.flickr.api_key = '9c43cd66947a57e6f29db1a9da3f72e3'; | 26 | this.flickr.api_key = '9c43cd66947a57e6f29db1a9da3f72e3'; |
27 | this.flickr.api_shs = '9c33c9e2f0f0cfd5'; | 27 | this.flickr.api_shs = '9c33c9e2f0f0cfd5'; |
28 | this.flickr.prefs_root = 'net.klever.kin.fireflix'; | 28 | this.flickr.prefs_root = 'net.klever.kin.fireflix'; |
29 | this.flickr.load_token(); | 29 | this.flickr.load_token(); |
30 | this.no_auth_info_label = this.auth_info.value; | 30 | this.no_auth_info_label = this.auth_info.value; |
31 | this.set_auth_state(this.flickr.token,false); | 31 | this.set_auth_state(this.flickr.token,false); |
32 | if(this.flickr.token) { | 32 | if(this.flickr.token) { |
33 | this.refresh_stuff(); | 33 | this.refresh_stuff(); |
34 | }else{ | 34 | }else{ |
35 | this.on_cmd_auth(); | 35 | this.on_cmd_auth(); |
36 | } | 36 | } |
37 | }, | 37 | }, |
38 | set_auth_state: function(au,inp) { /* authorized, in progress */ | 38 | set_auth_state: function(au,inp) { /* authorized, in progress */ |
39 | this.cmd_auth_unauth.disabled = !au; | 39 | this.cmd_auth_unauth.disabled = !au; |
40 | this.b_auth.hidden = au || inp; | 40 | this.b_auth.hidden = au || inp; |
41 | this.b_auth_done.hidden = !inp; | 41 | this.b_auth_done.hidden = !inp; |
42 | this.menu_auth_done.hidden = !inp; | 42 | this.menu_auth_done.hidden = !inp; |
43 | this.cmd_auth_done.setAttribute('disabled',!inp); | 43 | this.cmd_auth_done.setAttribute('disabled',!inp); |
44 | this.auth_info.disabled = !au; | 44 | this.auth_info.disabled = !au; |
45 | if(au) { | 45 | if(au) { |
46 | this.auth_info.value = this.flickr.user.fullname+' ['+this.flickr.user.username+']'; /* TODO: move to locale */ | 46 | this.auth_info.value = this.flickr.user.fullname+' ['+this.flickr.user.username+']'; /* TODO: move to locale */ |
47 | }else{ | 47 | }else{ |
48 | this.auth_info.value = this.no_auth_info_label; | 48 | this.auth_info.value = this.no_auth_info_label; |
49 | } | 49 | } |
50 | }, | 50 | }, |
51 | on_cmd_auth: function() { | 51 | on_cmd_auth: function() { |
52 | var _this = this; | 52 | var _this = this; |
53 | this.flickr.authorize_0( | 53 | this.flickr.authorize_0( |
54 | 'delete', | 54 | 'delete', |
55 | function(x,f,u) { | 55 | function(x,f,u) { |
56 | _this.openTab(u); | 56 | _this.openTab(u); |
57 | _this.set_auth_state(_this.flickr.token,true); | 57 | _this.set_auth_state(_this.flickr.token,true); |
58 | }, function(x,s,c,m) { | 58 | }, function(x,s,c,m) { |
59 | _this.flickr_failure(x,s,c,m); | 59 | _this.flickr_failure(x,s,c,m); |
60 | } | 60 | } |
61 | ); | 61 | ); |
62 | }, | 62 | }, |
63 | on_cmd_auth_done: function() { | 63 | on_cmd_auth_done: function() { |
64 | this.set_auth_state(this.flickr.token,false); | 64 | this.set_auth_state(this.flickr.token,false); |
65 | var _this = this; | 65 | var _this = this; |
66 | this.flickr.authorize_1( | 66 | this.flickr.authorize_1( |
67 | function() { | 67 | function() { |
68 | _this.flickr.save_token(); | 68 | _this.flickr.save_token(); |
69 | _this.refresh_stuff(); | 69 | _this.refresh_stuff(); |
70 | _this.set_auth_state(_this.flickr.token,false); | 70 | _this.set_auth_state(_this.flickr.token,false); |
71 | _this.auth_info.value = | 71 | _this.auth_info.value = |
72 | _this.flickr.user.fullname+' ['+_this.flickr.user.username+']'; | 72 | _this.flickr.user.fullname+' ['+_this.flickr.user.username+']'; |
73 | }, function(x,s,c,m) { | 73 | }, function(x,s,c,m) { |
74 | _this.set_auth_state(_this.flickr.token,false); /* XXX: no reset token? */ | 74 | _this.set_auth_state(_this.flickr.token,false); /* XXX: no reset token? */ |
75 | _this.flickr_failure(x,s,c,m); | 75 | _this.flickr_failure(x,s,c,m); |
76 | } | 76 | } |
77 | ); | 77 | ); |
78 | }, | 78 | }, |
79 | on_cmd_auth_unauth: function() { | 79 | on_cmd_auth_unauth: function() { |
80 | this.flickr.reset_token(); | 80 | this.flickr.reset_token(); |
81 | this.set_auth_state(false,false); | 81 | this.set_auth_state(false,false); |
82 | }, | 82 | }, |
83 | 83 | ||
84 | refresh_sets: function() { this.photosets.refresh_sets(); }, | 84 | refresh_sets: function() { this.photosets.refresh_sets(); }, |
85 | refresh_stuff: function() { | 85 | refresh_stuff: function() { |
86 | this.refresh_sets(); | 86 | this.refresh_sets(); |
87 | this.refresh_user_tags(); | 87 | this.refresh_user_tags(); |
88 | }, | 88 | }, |
89 | 89 | ||
90 | /* photoset treeview */ | 90 | /* photoset treeview */ |
91 | photoset: { | 91 | photoset: { |
92 | photos: new Array(), | 92 | photos: new Array(), |
93 | fireflix: null, | 93 | fireflix: null, |
94 | init: function(f) { | 94 | init: function(f) { |
95 | this.fireflix = f; | 95 | this.fireflix = f; |
96 | pull_elements(this,document,[ 'set_photo', 'set_photo_props' ]); | 96 | pull_elements(this,document,[ 'set_photo', 'set_photo_props' ]); |
97 | document.getElementById('setphotos').view = this; | 97 | document.getElementById('setphotos').view = this; |
98 | }, | 98 | }, |
99 | rowCount: 0, | 99 | rowCount: 0, |
100 | getCellText: function(r,c) { | 100 | getCellText: function(r,c) { |
101 | var p = this.photos[r]; | 101 | var p = this.photos[r]; |
102 | if(c.id=='sp_title') return p.title; | 102 | if(c.id=='sp_title') return p.title; |
103 | if(c.id=='sp_taken') return p.datetaken; | 103 | if(c.id=='sp_taken') return p.datetaken; |
104 | if(c.id=='sp_upload') { | 104 | if(c.id=='sp_upload') { |
105 | var du = new Date(p.dateupload*1000); | 105 | var du = new Date(p.dateupload*1000); |
106 | var rv = du.getFullYear()+'-'+(du.getMonth()+1)+'-'+du.getDate() | 106 | var rv = du.getFullYear()+'-'+(du.getMonth()+1)+'-'+du.getDate() |
107 | +' '+ | 107 | +' '+ |
108 | du.getHours()+':'+du.getMinutes()+':'+du.getSeconds(); | 108 | du.getHours()+':'+du.getMinutes()+':'+du.getSeconds(); |
109 | return rv.replace(/(\D)(\d)(\D)/,'$10$2$3'); | 109 | return rv.replace(/(\D)(\d)(\D)/,'$10$2$3'); |
110 | } | 110 | } |
111 | return c.id; | 111 | return c.id; |
112 | }, | 112 | }, |
113 | setTree: function(t) { this.tree = t }, | 113 | setTree: function(t) { this.tree = t }, |
114 | isContainer: function(r) { return false; }, | 114 | isContainer: function(r) { return false; }, |
115 | isSeparator: function(r) { return false; }, | 115 | isSeparator: function(r) { return false; }, |
116 | isSorted: function(r) { return false; }, | 116 | isSorted: function(r) { return false; }, |
117 | getLevel: function(r) { return 0; }, | 117 | getLevel: function(r) { return 0; }, |
118 | getImageSrc: function(r,c) { return null }, | 118 | getImageSrc: function(r,c) { return null }, |
119 | getRowProperties: function(r,p) {}, | 119 | getRowProperties: function(r,p) {}, |
120 | getCellProperties: function(cid,cel,p) {}, | 120 | getCellProperties: function(cid,cel,p) {}, |
121 | getColumnProperties: function(cid,cel,p) { }, | 121 | getColumnProperties: function(cid,cel,p) { }, |
122 | cycleHeader: function(cid,e) { }, | 122 | cycleHeader: function(cid,e) { }, |
123 | getParentIndex: function(r) { return -1; }, | 123 | getParentIndex: function(r) { return -1; }, |
124 | drop: function(r,o) { }, | 124 | drop: function(r,o) { }, |
125 | canDropBeforeAfter: function(r,b) { return false }, | 125 | canDropBeforeAfter: function(r,b) { return false }, |
126 | 126 | ||
127 | importXPR: function(xp) { | 127 | importXPR: function(xp) { |
128 | this.tree.beginUpdateBatch(); | 128 | this.tree.beginUpdateBatch(); |
129 | this.photos = new Array(); | 129 | this.photos = new Array(); |
130 | var n; while(n=xp.iterateNext()) { | 130 | var n; while(n=xp.iterateNext()) { |
131 | this.photos.push(new Photo(n)); | 131 | this.photos.push(new Photo(n)); |
132 | } | 132 | } |
133 | this.rowCount = this.photos.length; | 133 | this.rowCount = this.photos.length; |
134 | this.tree.endUpdateBatch(); | 134 | this.tree.endUpdateBatch(); |
135 | this.selection.clearSelection(); | 135 | this.selection.clearSelection(); |
136 | }, | 136 | }, |
137 | load_photos: function(psid) { | 137 | load_photos: function(psid) { |
138 | var _this = this; | 138 | var _this = this; |
139 | this.fireflix.flickr.api_call( | 139 | this.fireflix.flickr.api_call( |
140 | { | 140 | { |
141 | method: 'flickr.photosets.getPhotos', | 141 | method: 'flickr.photosets.getPhotos', |
142 | auth_token: 'default', | 142 | auth_token: 'default', |
143 | photoset_id: psid, | 143 | photoset_id: psid, |
144 | extras: 'license,date_upload,date_taken,owner_name,icon_server,original_format,last_update' | 144 | extras: 'license,date_upload,date_taken,owner_name,icon_server,original_format,last_update' |
145 | }, function(xr) { | 145 | }, function(xr) { |
146 | var x = xr.responseXML; | 146 | var x = xr.responseXML; |
147 | var xp = x.evaluate( | 147 | var xp = x.evaluate( |
148 | '/rsp/photoset/photo', x, null, | 148 | '/rsp/photoset/photo', x, null, |
149 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); | 149 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); |
150 | _this.importXPR(xp); | 150 | _this.importXPR(xp); |
151 | }, function(x,s,c,m) { | 151 | }, function(x,s,c,m) { |
152 | _this.fireflix.flickr_failure(x,s,c,m); | 152 | _this.fireflix.flickr_failure(x,s,c,m); |
153 | } | 153 | } |
154 | ); | 154 | ); |
155 | }, | 155 | }, |
156 | on_select: function() { | 156 | on_select: function() { |
157 | if(this.selection.count==1) { | 157 | if(this.selection.count==1) { |
158 | var p = this.photos[this.selection.currentIndex]; | 158 | var p = this.photos[this.selection.currentIndex]; |
159 | this.set_photo.src = | 159 | this.set_photo.src = |
160 | this.fireflix.flickr.get_photo_url(p.server,p.id,p.secret,'t'); | 160 | this.fireflix.flickr.get_photo_url(p.server,p.id,p.secret,'t'); |
161 | this.set_photo_props.hidden = false; | 161 | this.set_photo_props.hidden = false; |
162 | }else{ | 162 | }else{ |
163 | this.set_photo_props.hidden = true; | 163 | this.set_photo_props.hidden = true; |
164 | } | 164 | } |
165 | }, | 165 | }, |
166 | on_cmd_open: function(ev) { | 166 | on_cmd_open: function(ev) { |
167 | if(this.selection.currentIndex<0) return; | 167 | if(this.selection.currentIndex<0) return; |
168 | var p = this.photos[this.selection.currentIndex]; | 168 | var p = this.photos[this.selection.currentIndex]; |
169 | if(!p.id) return; | 169 | if(!p.id) return; |
170 | this.fireflix.openTab(this.fireflix.flickr.make_photo_url(p,'p')); | 170 | this.fireflix.openTab(this.fireflix.flickr.make_photo_url(p,'p')); |
171 | } | 171 | } |
172 | }, | 172 | }, |
173 | 173 | ||
174 | /* photosets treeview */ | 174 | /* photosets treeview */ |
175 | photosets: { | 175 | photosets: { |
176 | sets: new Array(), | 176 | sets: new Array(), |
177 | fireflix: null, | 177 | fireflix: null, |
178 | init: function(f) { | 178 | init: function(f) { |
179 | this.fireflix = f; | 179 | this.fireflix = f; |
180 | document.getElementById('setslist').view = this; | 180 | document.getElementById('setslist').view = this; |
181 | }, | 181 | }, |
182 | rowCount: 0, | 182 | rowCount: 0, |
183 | getCellText: function(r,c) { | 183 | getCellText: function(r,c) { |
184 | var s = this.sets[r]; | 184 | var s = this.sets[r]; |
185 | if(c.id=='sl_name') return s.title; | 185 | if(c.id=='sl_name') return s.title; |
186 | if(c.id=='sl_photos') return s.photos; | 186 | if(c.id=='sl_photos') return s.photos; |
187 | return c.id; | 187 | return c.id; |
188 | }, | 188 | }, |
189 | setTree: function(t) { this.tree = t }, | 189 | setTree: function(t) { this.tree = t }, |
190 | isContainer: function(r) { return false; }, | 190 | isContainer: function(r) { return false; }, |
191 | isSeparator: function(r) { return false; }, | 191 | isSeparator: function(r) { return false; }, |
192 | isSorted: function() { return false; }, | 192 | isSorted: function() { return false; }, |
193 | getLevel: function(r) { return 0; }, | 193 | getLevel: function(r) { return 0; }, |
194 | getImageSrc: function(r,c) { return null }, | 194 | getImageSrc: function(r,c) { return null }, |
195 | getRowProperties: function(r,p) {}, | 195 | getRowProperties: function(r,p) {}, |
196 | getCellProperties: function(cid,cel,p) { }, | 196 | getCellProperties: function(cid,cel,p) { }, |
197 | getColumnProperties: function(cid,cel,p) { }, | 197 | getColumnProperties: function(cid,cel,p) { }, |
198 | cycleHeader: function(cid,e) { }, | 198 | cycleHeader: function(cid,e) { }, |
199 | getParentIndex: function(r) { return -1; }, | 199 | getParentIndex: function(r) { return -1; }, |
200 | drop: function(r,o) { }, | 200 | drop: function(r,o) { }, |
201 | canDropBeforeAfter: function(r,b) { return false }, | 201 | canDropBeforeAfter: function(r,b) { return false }, |
202 | 202 | ||
203 | importXPR: function(xp) { | 203 | importXPR: function(xp) { |
204 | this.tree.beginUpdateBatch(); | 204 | this.tree.beginUpdateBatch(); |
205 | this.sets = new Array(); | 205 | this.sets = new Array(); |
206 | var n; while(n=xp.iterateNext()) { | 206 | var n; while(n=xp.iterateNext()) { |
207 | this.sets.push(new Photoset(n)); | 207 | this.sets.push(new Photoset(n)); |
208 | } | 208 | } |
209 | this.rowCount = this.sets.length; | 209 | this.rowCount = this.sets.length; |
210 | this.tree.endUpdateBatch(); | 210 | this.tree.endUpdateBatch(); |
211 | }, | 211 | }, |
212 | refresh_sets: function() { | 212 | refresh_sets: function() { |
213 | var _this = this; | 213 | var _this = this; |
214 | this.fireflix.flickr.api_call( | 214 | this.fireflix.flickr.api_call( |
215 | { | 215 | { |
216 | method: 'flickr.photosets.getList', | 216 | method: 'flickr.photosets.getList', |
217 | auth_token: 'default' | 217 | auth_token: 'default' |
218 | }, function(xr) { | 218 | }, function(xr) { |
219 | var x = xr.responseXML; | 219 | var x = xr.responseXML; |
220 | var xp = x.evaluate( | 220 | var xp = x.evaluate( |
221 | '/rsp/photosets/photoset', x, null, | 221 | '/rsp/photosets/photoset', x, null, |
222 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); | 222 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); |
223 | _this.importXPR(xp); | 223 | _this.importXPR(xp); |
224 | }, function(x,s,c,m) { | 224 | }, function(x,s,c,m) { |
225 | _this.fireflix.flickr_failure(x,s,c,m); | 225 | _this.fireflix.flickr_failure(x,s,c,m); |
226 | } | 226 | } |
227 | ); | 227 | ); |
228 | }, | 228 | }, |
229 | on_select: function() { | 229 | on_select: function() { |
230 | if(this.selection.count==1) { | 230 | if(this.selection.count==1) { |
231 | this.fireflix.cmd_set_props.setAttribute('disabled','false'); | 231 | this.fireflix.cmd_set_props.setAttribute('disabled','false'); |
232 | var s = this.sets[this.selection.currentIndex]; | 232 | var s = this.sets[this.selection.currentIndex]; |
233 | this.fireflix.photoset.load_photos(s.id); | 233 | this.fireflix.photoset.load_photos(s.id); |
234 | }else{ | 234 | }else{ |
235 | this.fireflix.cmd_set_props.setAttribute('disabled','true'); | 235 | this.fireflix.cmd_set_props.setAttribute('disabled','true'); |
236 | } | 236 | } |
237 | }, | 237 | }, |
238 | on_cmd_open_in_flickr: function(ev) { | 238 | on_cmd_open_in_flickr: function(ev) { |
239 | if(this.selection.currentIndex<0) return; | 239 | if(this.selection.currentIndex<0) return; |
240 | var p = this.sets[this.selection.currentIndex]; | 240 | var p = this.sets[this.selection.currentIndex]; |
241 | if(!p.id) return; | 241 | if(!p.id) return; |
242 | this.fireflix.openTab(this.fireflix.flickr.make_photoset_url(p)); | 242 | this.fireflix.openTab(this.fireflix.flickr.make_photoset_url(p)); |
243 | } | 243 | } |
244 | }, | 244 | }, |
245 | 245 | ||
246 | refresh_user_tags: function() { | 246 | refresh_user_tags: function() { |
247 | var lb = document.getElementById('tagslist'); | 247 | var lb = document.getElementById('tagslist'); |
248 | var _this = this; | 248 | var _this = this; |
249 | this.flickr.api_call( | 249 | this.flickr.api_call( |
250 | { | 250 | { |
251 | method: 'flickr.tags.getListUser', | 251 | method: 'flickr.tags.getListUser', |
252 | auth_token: 'default', | 252 | auth_token: 'default', |
253 | }, function(xr) { | 253 | }, function(xr) { |
254 | var x = xr.responseXML; | 254 | var x = xr.responseXML; |
255 | var xp = x.evaluate( | 255 | var xp = x.evaluate( |
256 | '/rsp/who/tags/tag', x, null, | 256 | '/rsp/who/tags/tag', x, null, |
257 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); | 257 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); |
258 | // TODO: clear list | 258 | // TODO: clear list |
259 | var n; while(n=xp.iterateNext()) { | 259 | var n; while(n=xp.iterateNext()) { |
260 | lb.appendItem(n.firstChild.nodeValue); | 260 | lb.appendItem(n.firstChild.nodeValue); |
261 | } | 261 | } |
262 | }, function(x,s,c,m) { | 262 | }, function(x,s,c,m) { |
263 | _this.flickr_failure(x,s,c,m); | 263 | _this.flickr_failure(x,s,c,m); |
264 | } | 264 | } |
265 | ); | 265 | ); |
266 | }, | 266 | }, |
267 | 267 | ||
268 | uploadObserver: { | 268 | uploadObserver: { |
269 | fireflix: null, | 269 | fireflix: null, |
270 | init: function(f) { | 270 | init: function(f) { |
271 | this.fireflix = f; | 271 | this.fireflix = f; |
272 | }, | 272 | }, |
273 | getSupportedFlavours: function() { | 273 | getSupportedFlavours: function() { |
274 | var rv = new FlavourSet(); | 274 | var rv = new FlavourSet(); |
275 | rv.appendFlavour('application/x-moz-file','nsIFile'); | 275 | rv.appendFlavour('application/x-moz-file','nsIFile'); |
276 | rv.appendFlavour('application/x-moz-url'); | 276 | rv.appendFlavour('application/x-moz-url'); |
277 | rv.appendFlavour('text/uri-list'); | 277 | rv.appendFlavour('text/uri-list'); |
278 | rv.appendFlavour('text/unicode'); | 278 | rv.appendFlavour('text/unicode'); |
279 | return rv; | 279 | return rv; |
280 | }, | 280 | }, |
281 | canHandleMultipleItems: true, | 281 | canHandleMultipleItems: true, |
282 | onDragOver: function(ev,fl,sess) { | 282 | onDragOver: function(ev,fl,sess) { |
283 | return true; | 283 | return true; |
284 | }, | 284 | }, |
285 | onDrop: function(ev,dd,s) { | 285 | onDrop: function(ev,dd,s) { |
286 | var ldf = null; | 286 | var ldf = null; |
287 | for(var i in dd.dataList) { | 287 | for(var i in dd.dataList) { |
288 | var di = dd.dataList[i]; | 288 | var di = dd.dataList[i]; |
289 | var dif = di.first; | 289 | var dif = di.first; |
290 | if( | 290 | if( |
291 | ldf==null | 291 | ldf==null |
292 | || ldf.flavour.contentType!=dif.flavour.contentType | 292 | || ldf.flavour.contentType!=dif.flavour.contentType |
293 | || ldf.contentLength!=dif.contentLength | 293 | || ldf.contentLength!=dif.contentLength |
294 | || ldf.data!=dif.data ) | 294 | || ldf.data!=dif.data ) |
295 | this.drop_item(ev,di,s); | 295 | this.drop_item(ev,di,s); |
296 | ldf = dif; | 296 | ldf = dif; |
297 | } | 297 | } |
298 | }, | 298 | }, |
299 | drop_item: function(ev,di,s) { | 299 | drop_item: function(ev,di,s) { |
300 | var d = di.first; | 300 | var d = di.first; |
301 | switch(d.flavour.contentType) { | 301 | switch(d.flavour.contentType) { |
302 | case 'text/unicode': | 302 | case 'text/unicode': |
303 | this.drop_urilist(ev,d.data,s); | 303 | this.drop_urilist(ev,d.data,s); |
304 | break; | 304 | break; |
305 | case 'application/x-moz-file': | 305 | case 'application/x-moz-file': |
306 | this.fireflix.uploads.add(d.data.path); | 306 | this.fireflix.uploads.add(d.data.path); |
307 | document.getElementById('fireflix_tabs').selectedTab | 307 | document.getElementById('fireflix_tabs').selectedTab |
308 | = document.getElementById('tab_upload'); | 308 | = document.getElementById('tab_upload'); |
309 | break; | 309 | break; |
310 | case 'text/uri-list': | 310 | case 'text/uri-list': |
311 | // is it ascii or could it be utf8? | 311 | // is it ascii or could it be utf8? |
312 | this.drop_urilist(ev,splitascii(d.data),s); | 312 | this.drop_urilist(ev,splitascii(d.data),s); |
313 | break; | 313 | break; |
314 | default: alert(d.flavour.contentType+':'+d.data); break; | 314 | default: alert(d.flavour.contentType+':'+d.data); break; |
315 | }; | 315 | }; |
316 | }, | 316 | }, |
317 | drop_urilist: function(ev,ul,s) { | 317 | drop_urilist: function(ev,ul,s) { |
318 | // TODO: check for being a file? | 318 | // TODO: check for being a file? |
319 | var us = decodeURIComponent(ul).split(/[\r\n]/); | 319 | var us = decodeURIComponent(ul).split(/[\r\n]/); |
320 | for(var ui in us) | 320 | for(var ui in us) |
321 | if(/\S/.test(us[ui])) | 321 | if(/\S/.test(us[ui])) |
322 | this.fireflix.uploads.add(us[ui]); | 322 | this.fireflix.uploads.add(us[ui]); |
323 | document.getElementById('fireflix_tabs').selectedTab | 323 | document.getElementById('fireflix_tabs').selectedTab |
324 | = document.getElementById('tab_upload'); | 324 | = document.getElementById('tab_upload'); |
325 | } | 325 | } |
326 | }, | 326 | }, |
327 | 327 | ||
328 | uploads: { | 328 | uploads: { |
329 | fireflix: null, | 329 | fireflix: null, |
330 | init: function(f) { | 330 | init: function(f) { |
331 | this.fireflix=f; | 331 | this.fireflix=f; |
332 | pull_elements(this,document,[ | 332 | pull_elements(this,document,[ |
333 | 'upload_filename','upload_title','upload_file_preview', | 333 | 'upload_filename','upload_title','upload_file_preview', |
334 | 'upload_file_props','upload_progress','upload_tags', | 334 | 'upload_file_props','upload_progress','upload_tags', |
335 | 'cmd_uploads_upload', 'upload_failure' | 335 | 'cmd_uploads_upload', 'upload_failure', 'upload_is_public', |
336 | 'upload_is_friends', 'upload_is_family' | ||
336 | ]); | 337 | ]); |
337 | document.getElementById('uploadlist').view = this; | 338 | document.getElementById('uploadlist').view = this; |
339 | this.upload_is_public.addEventListener( | ||
340 | 'CheckboxStateChange', { that: this, | ||
341 | handleEvent: function(ev) { this.that.propsToSel('is_public'); } | ||
342 | }, false ); | ||
343 | this.upload_is_friends.addEventListener( | ||
344 | 'CheckboxStateChange', { that: this, | ||
345 | handleEvent: function(ev) { this.that.propsToSel('is_friends'); } | ||
346 | }, false ); | ||
347 | this.upload_is_family.addEventListener( | ||
348 | 'CheckboxStateChange', { that: this, | ||
349 | handleEvent: function(ev) { this.that.propsToSel('is_family'); } | ||
350 | }, false ); | ||
338 | }, | 351 | }, |
339 | files: new Array(), | 352 | files: new Array(), |
340 | rowCount: 0, | 353 | rowCount: 0, |
341 | getCellText: function(r,c) { | 354 | getCellText: function(r,c) { |
342 | var f = this.files[r]; | 355 | var f = this.files[r]; |
343 | if(c.id=='up_file') return f.file; | 356 | if(c.id=='up_file') return f.file; |
344 | if(c.id=='up_title') return f.title; | 357 | if(c.id=='up_title') return f.title; |
345 | if(c.id=='up_status') return f.state; | 358 | if(c.id=='up_status') return f.state; |
346 | return c.id; | 359 | return c.id; |
347 | }, | 360 | }, |
348 | setTree: function(t) { this.tree = t }, | 361 | setTree: function(t) { this.tree = t }, |
349 | isContainer: function(r) { return false; }, | 362 | isContainer: function(r) { return false; }, |
350 | isSeparator: function(r) { return false; }, | 363 | isSeparator: function(r) { return false; }, |
351 | isSorted: function(r) { return false; }, | 364 | isSorted: function(r) { return false; }, |
352 | getLevel: function(r) { return 0; }, | 365 | getLevel: function(r) { return 0; }, |
353 | getImageSrc: function(r,c) { return null }, | 366 | getImageSrc: function(r,c) { return null }, |
354 | getRowProperties: function(r,p) { | 367 | getRowProperties: function(r,p) { |
355 | try { | 368 | try { |
356 | if(!Components) return; | 369 | if(!Components) return; |
357 | }catch(e) { return } | 370 | }catch(e) { return } |
358 | var f = this.files[r]; | 371 | var f = this.files[r]; |
359 | var as = Components.classes['@mozilla.org/atom-service;1']. | 372 | var as = Components.classes['@mozilla.org/atom-service;1']. |
360 | getService(Components.interfaces.nsIAtomService); | 373 | getService(Components.interfaces.nsIAtomService); |
361 | p.AppendElement(as.getAtom(f.state)); | 374 | p.AppendElement(as.getAtom(f.state)); |
362 | }, | 375 | }, |
363 | getCellProperties: function(r,c,p) { this.getRowProperties(r,p); }, | 376 | getCellProperties: function(r,c,p) { this.getRowProperties(r,p); }, |
364 | getColumnProperties: function(c,p) { }, | 377 | getColumnProperties: function(c,p) { }, |
365 | cycleHeader: function(cid,e) { }, | 378 | cycleHeader: function(cid,e) { }, |
366 | getParentIndex: function(r) { return -1; }, | 379 | getParentIndex: function(r) { return -1; }, |
367 | drop: function(r,o) { }, | 380 | drop: function(r,o) { }, |
368 | canDropBeforeAfter: function(r,b) { return false }, | 381 | canDropBeforeAfter: function(r,b) { return false }, |
369 | 382 | ||
370 | add: function(f) { | 383 | add: function(f) { |
371 | if(f.indexOf('file:/')==0) { | 384 | if(f.indexOf('file:/')==0) { |
372 | f = f.substr(5); | 385 | f = f.substr(5); |
373 | while(f.substr(0,2)=='//') { // XXX: not very performant, is it? ;-) | 386 | while(f.substr(0,2)=='//') { // XXX: not very performant, is it? ;-) |
374 | f = f.substr(1); | 387 | f = f.substr(1); |
375 | } | 388 | } |
376 | } | 389 | } |
377 | var t = f; | 390 | var t = f; |
378 | var ls = t.lastIndexOf('/'); | 391 | var ls = t.lastIndexOf('/'); |
379 | if(ls>0) t = t.substr(ls+1); | 392 | if(ls>0) t = t.substr(ls+1); |
380 | ls = t.lastIndexOf('\\'); | 393 | ls = t.lastIndexOf('\\'); |
381 | if(ls>0) t = t.substr(ls+1); | 394 | if(ls>0) t = t.substr(ls+1); |
382 | var ld = t.lastIndexOf('.'); | 395 | var ld = t.lastIndexOf('.'); |
383 | if(ld>0) t = t.substr(0,ld); | 396 | if(ld>0) t = t.substr(0,ld); |
384 | this.files.push( { | 397 | this.files.push( { |
385 | file: f, | 398 | file: f, |
386 | title: t, | 399 | title: t, |
387 | tags: '', | 400 | tags: '', |
401 | is_public: true, is_friend: false, is_family: false, | ||
388 | state: 'pending' | 402 | state: 'pending' |
389 | } ); | 403 | } ); |
390 | this.rowCount = this.files.length; | 404 | this.rowCount = this.files.length; |
391 | this.tree.rowCountChanged(this.rowCount-1,1); | 405 | this.tree.rowCountChanged(this.rowCount-1,1); |
392 | }, | 406 | }, |
393 | 407 | ||
394 | upload_worker: function() { | 408 | upload_worker: function() { |
395 | for(var f in this.files) { | 409 | for(var f in this.files) { |
396 | if(this.files[f].state=='pending') { | 410 | if(this.files[f].state=='pending') { |
397 | var ff = this.files[f]; | 411 | var ff = this.files[f]; |
398 | this.on_file_upload(ff); | 412 | this.on_file_upload(ff); |
399 | ff.state='uploading'; | 413 | ff.state='uploading'; |
400 | this.tree.invalidate(); | 414 | this.tree.invalidate(); |
401 | var _this = this; | 415 | var _this = this; |
402 | this.fireflix.flickr.upload_file( | 416 | this.fireflix.flickr.upload_file( |
403 | ff.file, { title: ff.title, tags: ff.tags }, | 417 | ff.file, { |
404 | function(x,p) { | 418 | title: ff.title, tags: ff.tags, |
419 | is_public: ff.is_public?'1':'0', | ||
420 | is_friend: ff.is_friend?'1':'0', | ||
421 | is_family: ff.is_family?'1':'0' | ||
422 | }, function(x,p) { | ||
405 | ff.photoid = p; | 423 | ff.photoid = p; |
406 | _this.batch_ids.push(p); | 424 | _this.batch_ids.push(p); |
407 | ff.state='completed'; | 425 | ff.state='completed'; |
408 | _this.tree.invalidate(); | 426 | _this.tree.invalidate(); |
409 | window.setTimeout(_this.upload_to,0,_this); | 427 | window.setTimeout(_this.upload_to,0,_this); |
410 | }, function(x,s,c,m) { | 428 | }, function(x,s,c,m) { |
411 | ff.state='failed'; | 429 | ff.state='failed'; |
412 | ff.flickr_errcode = c; | 430 | ff.flickr_errcode = c; |
413 | ff.flickr_errmsg = m; | 431 | ff.flickr_errmsg = m; |
414 | _this.tree.invalidate(); | 432 | _this.tree.invalidate(); |
415 | window.setTimeout(_this.upload_to,0,_this); | 433 | window.setTimeout(_this.upload_to,0,_this); |
416 | } | 434 | } |
417 | ); | 435 | ); |
418 | return; | 436 | return; |
419 | } | 437 | } |
420 | } | 438 | } |
421 | this.on_finish_upload(); | 439 | this.on_finish_upload(); |
422 | }, | 440 | }, |
423 | upload_to: function(_this) { _this.upload_worker(); }, | 441 | upload_to: function(_this) { _this.upload_worker(); }, |
424 | on_file_upload: function(f) { | 442 | on_file_upload: function(f) { |
425 | this.cmd_uploads_upload.setAttribute('disabled','true'); | 443 | this.cmd_uploads_upload.setAttribute('disabled','true'); |
426 | for(var fi in this.files) { | 444 | for(var fi in this.files) { |
427 | if(this.files[fi].file==f.file) { | 445 | if(this.files[fi].file==f.file) { |
428 | this.tree.ensureRowIsVisible(fi); | 446 | this.tree.ensureRowIsVisible(fi); |
429 | this.selection.rangedSelect(fi,fi,false); | 447 | this.selection.rangedSelect(fi,fi,false); |
430 | this.selection.currentIndex = fi; | 448 | this.selection.currentIndex = fi; |
431 | this.selToProps(); | 449 | this.selToProps(); |
432 | break; | 450 | break; |
433 | } | 451 | } |
434 | } | 452 | } |
435 | }, | 453 | }, |
436 | on_finish_upload: function() { | 454 | on_finish_upload: function() { |
437 | if(this.batch_ids.length) { | 455 | if(this.batch_ids.length) { |
438 | var psn = prompt(this.fireflix.loc_strings.getString('postUploadPhotoset')); | 456 | var psn = prompt(this.fireflix.loc_strings.getString('postUploadPhotoset')); |
439 | if(psn!=null) { | 457 | if(psn!=null) { |
440 | var pids = this.batch_ids.join(','); | 458 | var pids = this.batch_ids.join(','); |
441 | var ppid = this.batch_ids[0]; | 459 | var ppid = this.batch_ids[0]; |
442 | var _this = this; | 460 | var _this = this; |
443 | this.fireflix.flickr.api_call( | 461 | this.fireflix.flickr.api_call( |
444 | { | 462 | { |
445 | method: 'flickr.photosets.create', | 463 | method: 'flickr.photosets.create', |
446 | auth_token: 'default', | 464 | auth_token: 'default', |
447 | title: psn, | 465 | title: psn, |
448 | primary_photo_id: ppid | 466 | primary_photo_id: ppid |
449 | }, function(x) { | 467 | }, function(x) { |
450 | var npid = | 468 | var npid = |
451 | x.responseXML.getElementsByTagName('photoset').item(0).getAttribute('id'); | 469 | x.responseXML.getElementsByTagName('photoset').item(0).getAttribute('id'); |
452 | _this.fireflix.flickr.api_call( | 470 | _this.fireflix.flickr.api_call( |
453 | { | 471 | { |
454 | method: 'flickr.photosets.editPhotos', | 472 | method: 'flickr.photosets.editPhotos', |
455 | auth_token: 'default', | 473 | auth_token: 'default', |
456 | photoset_id: npid, | 474 | photoset_id: npid, |
457 | primary_photo_id: ppid, | 475 | primary_photo_id: ppid, |
458 | photo_ids: pids | 476 | photo_ids: pids |
459 | }, function(x) { | 477 | }, function(x) { |
460 | _this.fireflix.refresh_sets(); | 478 | _this.fireflix.refresh_sets(); |
461 | }, function(x,s,c,m) { | 479 | }, function(x,s,c,m) { |
462 | _this.fireflix.flickr_failure(x,s,c,m); | 480 | _this.fireflix.flickr_failure(x,s,c,m); |
463 | } | 481 | } |
464 | ); | 482 | ); |
465 | }, function(x,s,c,m) { | 483 | }, function(x,s,c,m) { |
466 | _this.fireflix.flickr_failure(x,s,c,m); | 484 | _this.fireflix.flickr_failure(x,s,c,m); |
467 | } | 485 | } |
468 | ); | 486 | ); |
469 | } | 487 | } |
470 | } | 488 | } |
471 | this.selection.clearSelection(); | 489 | this.selection.clearSelection(); |
472 | this.cmd_uploads_upload.setAttribute('disabled','false'); | 490 | this.cmd_uploads_upload.setAttribute('disabled','false'); |
473 | this.upload_progress.setAttribute('hidden','true'); | 491 | this.upload_progress.setAttribute('hidden','true'); |
474 | }, | 492 | }, |
475 | 493 | ||
476 | clear_list: function() { | 494 | clear_list: function() { |
477 | this.tree.beginUpdateBatch(); | 495 | this.tree.beginUpdateBatch(); |
478 | this.rowCount = 0; | 496 | this.rowCount = 0; |
479 | this.files = new Array(); | 497 | this.files = new Array(); |
480 | this.tree.endUpdateBatch(); | 498 | this.tree.endUpdateBatch(); |
481 | this.selToProps(); | 499 | this.selToProps(); |
482 | }, | 500 | }, |
483 | selectionChanged: function() { | 501 | selectionChanged: function() { |
484 | this.selToProps(); | 502 | this.selToProps(); |
485 | }, | 503 | }, |
486 | disableProps: function() { | 504 | disableProps: function() { |
487 | this.upload_filename.value=''; | 505 | this.upload_filename.value=''; |
488 | this.upload_filename.disabled = true; | 506 | this.upload_filename.disabled = true; |
489 | this.upload_title.value=''; | 507 | this.upload_title.value=''; |
490 | this.upload_title.disabled = true; | 508 | this.upload_title.disabled = true; |
491 | this.upload_file_preview.src = null; | 509 | this.upload_file_preview.src = null; |
492 | this.upload_tags.value=''; | 510 | this.upload_tags.value=''; |
493 | this.upload_tags.disabled = true; | 511 | this.upload_tags.disabled = true; |
512 | this.upload_is_public.disabled = true; | ||
513 | this.upload_is_friends.disabled = true; | ||
514 | this.upload_is_family.disabled = true; | ||
494 | /* this.upload_file_props.hidden = true; */ | 515 | /* this.upload_file_props.hidden = true; */ |
495 | }, | 516 | }, |
496 | selToProps: function() { | 517 | selToProps: function() { |
497 | if(!this.selection.count) { | 518 | if(!this.selection.count) { |
498 | this.disableProps(); | 519 | this.disableProps(); |
499 | this.upload_file_props.hidden = true; | 520 | this.upload_file_props.hidden = true; |
500 | }else if(this.selection.count==1) { | 521 | }else if(this.selection.count==1) { |
501 | var f=this.files[this.selection.currentIndex]; | 522 | var f=this.files[this.selection.currentIndex]; |
502 | if(f==null) { | 523 | if(f==null) { |
503 | this.disableProps(); | 524 | this.disableProps(); |
504 | this.upload_file_props.hidden = true; | 525 | this.upload_file_props.hidden = true; |
505 | }else{ | 526 | }else{ |
506 | var inactives = f.state!='pending'; | 527 | var inactives = f.state!='pending'; |
507 | this.upload_filename.value = f.file; | 528 | this.upload_filename.value = f.file; this.upload_filename.disabled = inactives; |
508 | this.upload_filename.disabled = inactives; | 529 | this.upload_title.value = f.title; this.upload_title.disabled = inactives; |
509 | this.upload_title.value = f.title; | ||
510 | this.upload_title.disabled = inactives; | ||
511 | this.upload_file_preview.src = 'file:///'+f.file; | 530 | this.upload_file_preview.src = 'file:///'+f.file; |
512 | this.upload_tags.value = f.tags; | 531 | this.upload_tags.value = f.tags; this.upload_tags.disabled = inactives; |
513 | this.upload_tags.disabled = inactives; | 532 | this.upload_is_public.checked = f.is_public; this.upload_is_public.disabled = inactives; |
533 | this.upload_is_friends.checked = f.is_friend; this.upload_is_friends.disabled = inactives; | ||
534 | this.upload_is_family.checked = f.is_family; this.upload_is_family.disabled = inactives; | ||
514 | if(f.state=='failed') { | 535 | if(f.state=='failed') { |
515 | this.upload_failure.textContent=f.flickr_errcode+': '+f.flickr_errmsg; | 536 | this.upload_failure.textContent=((f.flickr_errcode<0)?'':f.flickr_errcode+': ')+f.flickr_errmsg; |
516 | this.upload_failure.hidden = false; | 537 | this.upload_failure.hidden = false; |
517 | }else{ | 538 | }else{ |
518 | this.upload_failure.hidden = true; | 539 | this.upload_failure.hidden = true; |
519 | } | 540 | } |
520 | this.upload_file_props.hidden = false; | 541 | this.upload_file_props.hidden = false; |
521 | } | 542 | } |
522 | }else{ | 543 | }else{ |
523 | var ftitle = null; var onetitle = true; | 544 | var ftitle = null; var onetitle = true; |
524 | var ftags = null; var onetag = true; | 545 | var ftags = null; var onetag = true; |
525 | var fs = 0; | 546 | var fs = 0; |
526 | for(var ff in this.files) { | 547 | for(var ff in this.files) { |
527 | if(this.selection.isSelected(ff) && this.files[ff].state=='pending' ) { | 548 | if(this.selection.isSelected(ff) && this.files[ff].state=='pending' ) { |
528 | ++fs; | 549 | ++fs; |
529 | if(ftitle==null) { | 550 | if(ftitle==null) { |
530 | ftitle = this.files[ff].title; | 551 | ftitle = this.files[ff].title; |
531 | }else if(ftitle!=this.files[ff].title) { | 552 | }else if(ftitle!=this.files[ff].title) { |
532 | onetitle = false; | 553 | onetitle = false; |
533 | } | 554 | } |
534 | if(ftags==null) { | 555 | if(ftags==null) { |
535 | ftags = this.files[ff].tags; | 556 | ftags = this.files[ff].tags; |
536 | }else if(ftags!=this.files[ff].tags) { | 557 | }else if(ftags!=this.files[ff].tags) { |
537 | onetag = false; | 558 | onetag = false; |
538 | } | 559 | } |
539 | } | 560 | } |
540 | } | 561 | } |
541 | if(fs) { | 562 | if(fs) { |
542 | this.upload_filename.value=''; | 563 | this.upload_filename.value=''; |
543 | this.upload_filename.disabled = true; | 564 | this.upload_filename.disabled = true; |
544 | if(onetitle) | 565 | if(onetitle) |
545 | this.upload_title.value = ftitle; | 566 | this.upload_title.value = ftitle; |
546 | this.upload_title.disabled = false; | 567 | this.upload_title.disabled = false; |
547 | if(onetag) | 568 | if(onetag) |
548 | this.upload_tags.value = ftags; | 569 | this.upload_tags.value = ftags; |
549 | this.upload_tags.disabled = false; | 570 | this.upload_tags.disabled = false; |
550 | this.upload_file_preview.src = null; | 571 | this.upload_file_preview.src = null; |
551 | this.upload_failure.hidden = true; | 572 | this.upload_failure.hidden = true; |
552 | this.upload_file_props.hidden = false; | 573 | this.upload_file_props.hidden = false; |
553 | }else | 574 | }else |
554 | this.disableProps(); | 575 | this.disableProps(); |
555 | this.upload_file_props.hidden = true; | 576 | this.upload_file_props.hidden = true; |
556 | } | 577 | } |
557 | }, | 578 | }, |
558 | propsToSel: function(prop) { | 579 | propsToSel: function(prop) { |
559 | if(this.selection.count<=0) return; | 580 | if(this.selection.count<=0) return; |
560 | for(var ff in this.files) { | 581 | for(var ff in this.files) { |
561 | if(this.selection.isSelected(ff) && this.files[ff].state=='pending') { | 582 | if(this.selection.isSelected(ff) && this.files[ff].state=='pending') { |
562 | if(prop=='filename') | 583 | if(prop=='filename') this.files[ff].file = this.upload_filename.value; |
563 | this.files[ff].file = this.upload_filename.value; | 584 | if(prop=='title') this.files[ff].title = this.upload_title.value; |
564 | if(prop=='title') | 585 | if(prop=='tags') this.files[ff].tags = this.upload_tags.value; |
565 | this.files[ff].title = this.upload_title.value; | 586 | if(prop=='is_public') this.files[ff].is_public = this.upload_is_public.checked; |
566 | if(prop=='tags') | 587 | if(prop=='is_friends') this.files[ff].is_friend = this.upload_is_friends.checked; |
567 | this.files[ff].tags = this.upload_tags.value; | 588 | if(prop=='is_family') this.files[ff].is_family = this.upload_is_family.checked; |
568 | this.tree.invalidateRow(ff); | 589 | this.tree.invalidateRow(ff); |
569 | } | 590 | } |
570 | } | 591 | } |
571 | }, | 592 | }, |
572 | 593 | ||
573 | on_upload: function() { | 594 | on_upload: function() { |
574 | this.selToProps(); | 595 | this.selToProps(); |
575 | this.batch_ids = new Array(); | 596 | this.batch_ids = new Array(); |
576 | this.upload_progress.value=0; | 597 | this.upload_progress.value=0; |
577 | this.upload_progress.setAttribute('hidden','false'); | 598 | this.upload_progress.setAttribute('hidden','false'); |
578 | this.upload_worker(); | 599 | this.upload_worker(); |
579 | }, | 600 | }, |
580 | on_clear: function() { | 601 | on_clear: function() { |
581 | this.clear_list(); | 602 | this.clear_list(); |
582 | }, | 603 | }, |
583 | on_remove: function() { | 604 | on_remove: function() { |
584 | if(this.selection.count) { | 605 | if(this.selection.count) { |
585 | this.tree.beginUpdateBatch(); | 606 | this.tree.beginUpdateBatch(); |
586 | for(var i=this.files.length-1;i>=0;--i) { | 607 | for(var i=this.files.length-1;i>=0;--i) { |
587 | if(this.selection.isSelected(i)) { | 608 | if(this.selection.isSelected(i)) { |
588 | this.files.splice(i,1); | 609 | this.files.splice(i,1); |
589 | this.rowCount--; | 610 | this.rowCount--; |
590 | } | 611 | } |
591 | } | 612 | } |
592 | this.tree.endUpdateBatch(); | 613 | this.tree.endUpdateBatch(); |
593 | this.selection.clearSelection(); | 614 | this.selection.clearSelection(); |
594 | } | 615 | } |
595 | }, | 616 | }, |
596 | on_add: function() { | 617 | on_add: function() { |
597 | var ifp = Components.interfaces.nsIFilePicker; | 618 | var ifp = Components.interfaces.nsIFilePicker; |
598 | var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(ifp); | 619 | var fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(ifp); |
599 | fp.init(window, "Select a File", ifp.modeOpenMultiple); | 620 | fp.init(window, "Select a File", ifp.modeOpenMultiple); |
600 | fp.appendFilters(ifp.filterImages); | 621 | fp.appendFilters(ifp.filterImages); |
601 | var rv = fp.show(); | 622 | var rv = fp.show(); |
602 | if(rv==ifp.returnOK) { | 623 | if(rv==ifp.returnOK) { |
603 | var ff = fp.files; | 624 | var ff = fp.files; |
604 | while(ff.hasMoreElements()) { | 625 | while(ff.hasMoreElements()) { |
605 | var f = ff.getNext(); | 626 | var f = ff.getNext(); |
606 | f.QueryInterface(Components.interfaces.nsIFile); | 627 | f.QueryInterface(Components.interfaces.nsIFile); |
607 | this.add(f.path); | 628 | this.add(f.path); |
608 | } | 629 | } |
609 | } | 630 | } |
610 | } | 631 | } |
611 | }, | 632 | }, |
612 | 633 | ||
613 | on_set_props: function() { | 634 | on_set_props: function() { |
614 | var pset = this.photosets.sets[this.photosets.selection.currentIndex]; | 635 | var pset = this.photosets.sets[this.photosets.selection.currentIndex]; |
615 | window.openDialog( | 636 | window.openDialog( |
616 | "chrome://fireflix/content/photoset-props.xul", | 637 | "chrome://fireflix/content/photoset-props.xul", |
617 | null, "dependent,modal,dialog,chrome", this, | 638 | null, "dependent,modal,dialog,chrome", this, |
618 | pset ); | 639 | pset ); |
619 | if(pset.dirty) { | 640 | if(pset.dirty) { |
620 | var _this = this; | 641 | var _this = this; |
621 | this.flickr.api_call( | 642 | this.flickr.api_call( |
622 | { | 643 | { |
623 | method: 'flickr.photosets.editMeta', | 644 | method: 'flickr.photosets.editMeta', |
624 | auth_token: 'default', | 645 | auth_token: 'default', |
625 | photoset_id: pset.id, | 646 | photoset_id: pset.id, |
626 | title: pset.title, | 647 | title: pset.title, |
627 | description: pset.description | 648 | description: pset.description |
628 | }, function(xr) { | 649 | }, function(xr) { |
629 | pset.dirty = false; | 650 | pset.dirty = false; |
630 | _this.flickr.api_call( | 651 | _this.flickr.api_call( |
631 | { | 652 | { |
632 | method: 'flickr.photosets.getPhotos', | 653 | method: 'flickr.photosets.getPhotos', |
633 | auth_token: 'default', | 654 | auth_token: 'default', |
634 | photoset_id: pset.id | 655 | photoset_id: pset.id |
635 | }, function(xr) { | 656 | }, function(xr) { |
636 | var x = xr.responseXML; | 657 | var x = xr.responseXML; |
637 | var xp = x.evaluate( | 658 | var xp = x.evaluate( |
638 | '/rsp/photoset/photo', x, null, | 659 | '/rsp/photoset/photo', x, null, |
639 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); | 660 | XPathResult.ORDERED_NODE_ITERATOR_TYPE, null ); |
640 | var phids = new Array(); | 661 | var phids = new Array(); |
641 | var priph = null; | 662 | var priph = null; |
642 | var n; while(n=xp.iterateNext()) { | 663 | var n; while(n=xp.iterateNext()) { |
643 | var pid = n.getAttribute('id'); | 664 | var pid = n.getAttribute('id'); |
644 | phids.push( pid ); | 665 | phids.push( pid ); |
645 | if(pid==pset.primary && n.getAttribute('isprimary')!='1') | 666 | if(pid==pset.primary && n.getAttribute('isprimary')!='1') |
646 | priph = pid; | 667 | priph = pid; |
647 | } | 668 | } |
648 | if(priph) { | 669 | if(priph) { |
649 | _this.flickr.api_call( | 670 | _this.flickr.api_call( |
650 | { | 671 | { |
651 | method: 'flickr.photosets.editPhotos', | 672 | method: 'flickr.photosets.editPhotos', |
652 | auth_token: 'default', | 673 | auth_token: 'default', |
653 | photoset_id: pset.id, | 674 | photoset_id: pset.id, |
654 | primary_photo_id: priph, | 675 | primary_photo_id: priph, |
655 | photo_ids: phids.join(',') | 676 | photo_ids: phids.join(',') |
656 | }, function() { }, function(x,s,c,m) { /* flickr.photosets.editPhotos */ | 677 | }, function() { }, function(x,s,c,m) { /* flickr.photosets.editPhotos */ |
657 | _this.flickr_failure(x,s,c,m); | 678 | _this.flickr_failure(x,s,c,m); |
658 | } | 679 | } |
659 | ); | 680 | ); |
660 | } | 681 | } |
661 | }, function(x,s,c,m) { /* flickr.photosets.getPhotos */ | 682 | }, function(x,s,c,m) { /* flickr.photosets.getPhotos */ |
662 | _this.flickr_failure(x,s,c,m); | 683 | _this.flickr_failure(x,s,c,m); |
663 | } | 684 | } |
664 | ); | 685 | ); |
665 | }, function(x,s,c,m) { /* flickr.photosets.editMeta */ | 686 | }, function(x,s,c,m) { /* flickr.photosets.editMeta */ |
666 | _this.flickr_failure(x,s,c,m); | 687 | _this.flickr_failure(x,s,c,m); |
667 | } | 688 | } |
668 | ); | 689 | ); |
669 | } | 690 | } |
670 | }, | 691 | }, |
671 | on_refresh_sets: function() { | 692 | on_refresh_sets: function() { |
672 | this.refresh_sets(); | 693 | this.refresh_sets(); |
673 | }, | 694 | }, |
674 | on_cmd_sets_html: function(csfx,ev) { | 695 | on_cmd_sets_html: function(csfx,ev) { |
675 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); | 696 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); |
676 | var rv = this.build_html(this.photoset.photos,uti,utl); | 697 | var rv = this.build_html(this.photoset.photos,uti,utl); |
677 | this.popup_content(rv); | 698 | this.popup_content(rv); |
678 | }, | 699 | }, |
679 | on_cmd_setphotos_html: function(csfx,ev) { | 700 | on_cmd_setphotos_html: function(csfx,ev) { |
680 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); | 701 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); |
681 | var rv = ''; | 702 | var rv = ''; |
682 | for(var p in this.photoset.photos) { | 703 | for(var p in this.photoset.photos) { |
683 | if(this.photoset.selection.isSelected(p)) | 704 | if(this.photoset.selection.isSelected(p)) |
684 | rv += this.photo_html(this.photoset.photos[p],uti,utl)+'\n'; | 705 | rv += this.photo_html(this.photoset.photos[p],uti,utl)+'\n'; |
685 | } | 706 | } |
686 | this.popup_content(rv); | 707 | this.popup_content(rv); |
687 | }, | 708 | }, |
688 | 709 | ||
689 | on_cmd_uploads_html: function(csfx,ev) { | 710 | on_cmd_uploads_html: function(csfx,ev) { |
690 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); | 711 | var uti = csfx.charAt(0); var utl = csfx.charAt(1); |
691 | var pids = new Array(); | 712 | var pids = new Array(); |
692 | for(var f in this.uploads.files) { | 713 | for(var f in this.uploads.files) { |
693 | if(this.uploads.selection.isSelected(f)) | 714 | if(this.uploads.selection.isSelected(f)) |
694 | if(this.uploads.files[f].photoid) | 715 | if(this.uploads.files[f].photoid) |
695 | pids.push(this.uploads.files[f].photoid); | 716 | pids.push(this.uploads.files[f].photoid); |
696 | } | 717 | } |
697 | var pp = this.uploads.rowCount*2; if(pp>500) pp = 500; | 718 | var pp = this.uploads.rowCount*2; if(pp>500) pp = 500; |
698 | var _this = this; | 719 | var _this = this; |
699 | this.flickr.api_call( | 720 | this.flickr.api_call( |
700 | { | 721 | { |
701 | method: 'flickr.photos.search', | 722 | method: 'flickr.photos.search', |
702 | auth_token: 'default', | 723 | auth_token: 'default', |
703 | extras: 'original_format', | 724 | extras: 'original_format', |
704 | user_id: 'me', | 725 | user_id: 'me', |
705 | per_page: pp | 726 | per_page: pp |
706 | }, | 727 | }, |
707 | function(xr) { | 728 | function(xr) { |
708 | var x = xr.responseXML; | 729 | var x = xr.responseXML; |
709 | var rv = ''; | 730 | var rv = ''; |
710 | for(var pn in pids) { | 731 | for(var pn in pids) { |
711 | var p = pids[pn]; | 732 | var p = pids[pn]; |
712 | var pp = new Photo(xp_node('/rsp/photos/photo[@id='+p+']',x)); | 733 | var pp = new Photo(xp_node('/rsp/photos/photo[@id='+p+']',x)); |
713 | rv += _this.photo_html(pp,uti,utl)+'\n'; | 734 | rv += _this.photo_html(pp,uti,utl)+'\n'; |
714 | } | 735 | } |
715 | _this.popup_content(rv); | 736 | _this.popup_content(rv); |
716 | }, function(x,s,c,m) { | 737 | }, function(x,s,c,m) { |
717 | _this.flickr_failure(x,s,c,m); | 738 | _this.flickr_failure(x,s,c,m); |
718 | } | 739 | } |
719 | ); | 740 | ); |
720 | }, | 741 | }, |
721 | 742 | ||
722 | /* | 743 | /* |
723 | * | 744 | * |
724 | */ | 745 | */ |
725 | foundphotos: { | 746 | foundphotos: { |
726 | fireflix: null, | 747 | fireflix: null, |
727 | init: function(f) { | 748 | init: function(f) { |
728 | this.fireflix = f; | 749 | this.fireflix = f; |
729 | pull_elements(this,document,[ | 750 | pull_elements(this,document,[ |
730 | 'search_for','search_tags','search_mine', | 751 | 'search_for','search_tags','search_mine', |
731 | 'searchresult_props','search_photo', | 752 | 'searchresult_props','search_photo', |
732 | 'searchresult_title','searchresult_description', | 753 | 'searchresult_title','searchresult_description', |
733 | 'search_page','cmd_search_prev_page','cmd_search_next_page' | 754 | 'search_page','cmd_search_prev_page','cmd_search_next_page' |
734 | ]); | 755 | ]); |
735 | document.getElementById('searchresults').view = this; | 756 | document.getElementById('searchresults').view = this; |
736 | }, | 757 | }, |
737 | photos: new Array(), | 758 | photos: new Array(), |
738 | rowCount: 0, | 759 | rowCount: 0, |
739 | getCellText: function(r,c) { | 760 | getCellText: function(r,c) { |
740 | var p = this.photos[r]; | 761 | var p = this.photos[r]; |
741 | if(c.id=='sr_title') return p.title; | 762 | if(c.id=='sr_title') return p.title; |
742 | return c.id; | 763 | return c.id; |
743 | }, | 764 | }, |
744 | setTree: function(t) { this.tree = t }, | 765 | setTree: function(t) { this.tree = t }, |
745 | isContainer: function(r) { return false }, | 766 | isContainer: function(r) { return false }, |
746 | isSeparator: function(r) { return false }, | 767 | isSeparator: function(r) { return false }, |
747 | isSorted: function(r) { return false }, | 768 | isSorted: function(r) { return false }, |
748 | getLevel: function(r) { return 0 }, | 769 | getLevel: function(r) { return 0 }, |
749 | getImageSrc: function(r,c) { return null }, | 770 | getImageSrc: function(r,c) { return null }, |
750 | getRowProperties: function(r,p) { }, | 771 | getRowProperties: function(r,p) { }, |
751 | getCellProperties: function(cid,cel,p) { }, | 772 | getCellProperties: function(cid,cel,p) { }, |
752 | getColumnProperties: function(cid,cel,p) { }, | 773 | getColumnProperties: function(cid,cel,p) { }, |
753 | cycleHeader: function(cid,e) { }, | 774 | cycleHeader: function(cid,e) { }, |
754 | getParentIndex: function(r) { return -1 }, | 775 | getParentIndex: function(r) { return -1 }, |
755 | drop: function(r,o) { }, | 776 | drop: function(r,o) { }, |
756 | canDropBeforeAfter: function(r,b) { return false }, | 777 | canDropBeforeAfter: function(r,b) { return false }, |
757 | 778 | ||
758 | importXPR: function(xp) { | 779 | importXPR: function(xp) { |
759 | this.selection.clearSelection(); | 780 | this.selection.clearSelection(); |
760 | this.selection.currentIndex = -1; | 781 | this.selection.currentIndex = -1; |
761 | this.searchresult_props.hidden = true; | 782 | this.searchresult_props.hidden = true; |
762 | this.tree.beginUpdateBatch(); | 783 | this.tree.beginUpdateBatch(); |
763 | this.photos = new Array(); | 784 | this.photos = new Array(); |
764 | var n; while(n=xp.iterateNext()) { | 785 | var n; while(n=xp.iterateNext()) { |
765 | this.photos.push(new Photo(n)); | 786 | this.photos.push(new Photo(n)); |
766 | } | 787 | } |
767 | this.rowCount = this.photos.length; | 788 | this.rowCount = this.photos.length; |
768 | this.tree.endUpdateBatch(); | 789 | this.tree.endUpdateBatch(); |
769 | }, | 790 | }, |
770 | paging: { | 791 | paging: { |
771 | pars: null, | 792 | pars: null, |
772 | page: null, pages: null, perpage: null, total: null | 793 | page: null, pages: null, perpage: null, total: null |
773 | }, | 794 | }, |
774 | search_photos: function() { | 795 | search_photos: function() { |
775 | var pars = { | 796 | var pars = { |
776 | method: 'flickr.photos.search', | 797 | method: 'flickr.photos.search', |
777 | auth_token: 'default', | 798 | auth_token: 'default', |
778 | extras: 'license,date_upload,date_taken,owner_name,icon_server,original_format,last_update,geo' | 799 | extras: 'license,date_upload,date_taken,owner_name,icon_server,original_format,last_update,geo' |
779 | }; | 800 | }; |
780 | if(this.search_mine.checked) | 801 | if(this.search_mine.checked) |
781 | pars.user_id='me'; | 802 | pars.user_id='me'; |
782 | if(this.search_tags.checked) { | 803 | if(this.search_tags.checked) { |
783 | pars.tags=this.search_for.value.split(/ +/).join(','); | 804 | pars.tags=this.search_for.value.split(/ +/).join(','); |
784 | }else{ | 805 | }else{ |
785 | pars.text=this.search_for.value; | 806 | pars.text=this.search_for.value; |
786 | } | 807 | } |
787 | this.paging.pars = new Object(); | 808 | this.paging.pars = new Object(); |
788 | this.paging.page = null; this.paging.pages = null; | 809 | this.paging.page = null; this.paging.pages = null; |
789 | this.paging.perpage = null; this.paging.total = null; | 810 | this.paging.perpage = null; this.paging.total = null; |
790 | for(var p in pars) this.paging.pars[p] = pars[p]; | 811 | for(var p in pars) this.paging.pars[p] = pars[p]; |
791 | this.perform_search(pars); | 812 | this.perform_search(pars); |
792 | }, | 813 | }, |
793 | perform_search: function(p) { | 814 | perform_search: function(p) { |
794 | var _this = this; | 815 | var _this = this; |
795 | this.fireflix.flickr.api_call( p, | 816 | this.fireflix.flickr.api_call( p, |
796 | function(xr) { | 817 | function(xr) { |
797 | var x = xr.responseXML; | 818 | var x = xr.responseXML; |
798 | var xp = xp_nodes('/rsp/photos/photo',x); | 819 | var xp = xp_nodes('/rsp/photos/photo',x); |
799 | _this.importXPR(xp); | 820 | _this.importXPR(xp); |
800 | _this.tree.ensureRowIsVisible(0); | 821 | _this.tree.ensureRowIsVisible(0); |
801 | xp = xp_node('/rsp/photos',x); | 822 | xp = xp_node('/rsp/photos',x); |
802 | _this.paging.page = parseInt(xp.getAttribute('page')); | 823 | _this.paging.page = parseInt(xp.getAttribute('page')); |
803 | _this.paging.pages = parseInt(xp.getAttribute('pages')); | 824 | _this.paging.pages = parseInt(xp.getAttribute('pages')); |
804 | _this.paging.perpage = parseInt(xp.getAttribute('perpage')); | 825 | _this.paging.perpage = parseInt(xp.getAttribute('perpage')); |
805 | _this.paging.total = parseInt(xp.getAttribute('total')); | 826 | _this.paging.total = parseInt(xp.getAttribute('total')); |
806 | _this.update_paging(); | 827 | _this.update_paging(); |
807 | _this.on_select(); | 828 | _this.on_select(); |
808 | }, function(x,s,c,m) { | 829 | }, function(x,s,c,m) { |
809 | _this.fireflix.flickr_failure(x,s,c,m); | 830 | _this.fireflix.flickr_failure(x,s,c,m); |
810 | } | 831 | } |
811 | ); | 832 | ); |
812 | }, | 833 | }, |
813 | on_cmd_prev: function(ev) { | 834 | on_cmd_prev: function(ev) { |
814 | var pars = new Object(); | 835 | var pars = new Object(); |
815 | for(var p in this.paging.pars) pars[p] = this.paging.pars[p]; | 836 | for(var p in this.paging.pars) pars[p] = this.paging.pars[p]; |
816 | pars.page=this.paging.page-1; pars.per_page=this.paging.perpage; | 837 | pars.page=this.paging.page-1; pars.per_page=this.paging.perpage; |
817 | this.perform_search(pars); | 838 | this.perform_search(pars); |
818 | }, | 839 | }, |
819 | on_cmd_next: function(ev) { | 840 | on_cmd_next: function(ev) { |
820 | var pars = new Object(); | 841 | var pars = new Object(); |
821 | for(var p in this.paging.pars) pars[p] = this.paging.pars[p]; | 842 | for(var p in this.paging.pars) pars[p] = this.paging.pars[p]; |
822 | pars.page=this.paging.page+1; pars.per_page=this.paging.perpage; | 843 | pars.page=this.paging.page+1; pars.per_page=this.paging.perpage; |
823 | this.perform_search(pars); | 844 | this.perform_search(pars); |
824 | }, | 845 | }, |
825 | update_paging: function() { | 846 | update_paging: function() { |
826 | if(! (this.paging.pars && this.paging.page && this.paging.pages) ) { | 847 | if(! (this.paging.pars && this.paging.page && this.paging.pages) ) { |
827 | this.search_page.value=''; this.search_page.hidden = true; | 848 | this.search_page.value=''; this.search_page.hidden = true; |
828 | this.cmd_search_prev_page.setAttribute('disabled','true'); | 849 | this.cmd_search_prev_page.setAttribute('disabled','true'); |
829 | this.cmd_search_next_page.setAttribute('disabled','true'); | 850 | this.cmd_search_next_page.setAttribute('disabled','true'); |
830 | }else{ | 851 | }else{ |
831 | this.search_page.value=this.fireflix.loc_strings.getFormattedString('search_page',[this.paging.page,this.paging.pages]); | 852 | this.search_page.value=this.fireflix.loc_strings.getFormattedString('search_page',[this.paging.page,this.paging.pages]); |
832 | this.search_page.hidden=false; | 853 | this.search_page.hidden=false; |
833 | this.cmd_search_prev_page.setAttribute('disabled',(this.paging.page>1)?'false':'true'); | 854 | this.cmd_search_prev_page.setAttribute('disabled',(this.paging.page>1)?'false':'true'); |
834 | this.cmd_search_next_page.setAttribute('disabled',(this.paging.page<this.paging.pages)?'false':'true'); | 855 | this.cmd_search_next_page.setAttribute('disabled',(this.paging.page<this.paging.pages)?'false':'true'); |
835 | } | 856 | } |
836 | }, | 857 | }, |
837 | render_description_frame: function(content) { | 858 | render_description_frame: function(content) { |
838 | this.searchresult_description.innerHTML = ''; | 859 | this.searchresult_description.innerHTML = ''; |
839 | if(content) { | 860 | if(content) { |
840 | var dp = new DOMParser(); | 861 | var dp = new DOMParser(); |
841 | var pd = dp.parseFromString( | 862 | var pd = dp.parseFromString( |
842 | '<div xmlns="http://www.w3.org/1999/xhtml">'+content+'</div>', 'text/xml' ); | 863 | '<div xmlns="http://www.w3.org/1999/xhtml">'+content+'</div>', 'text/xml' ); |
843 | var de = pd.documentElement; | 864 | var de = pd.documentElement; |
844 | if(de.tagName=='parsererror') | 865 | if(de.tagName=='parsererror') |
845 | this.searchresult_description.innerHTML=this.fireflix.loc_strings.getString('broken_description'); | 866 | this.searchresult_description.innerHTML=this.fireflix.loc_strings.getString('broken_description'); |
846 | else | 867 | else |
847 | this.searchresult_description.appendChild(de); | 868 | this.searchresult_description.appendChild(de); |
848 | /* of all linking elements flickr only allows a */ | 869 | /* of all linking elements flickr only allows a */ |
849 | var as = this.searchresult_description.getElementsByTagName('a'); | 870 | var as = this.searchresult_description.getElementsByTagName('a'); |
850 | for(var a=0;a<as.length;++a) | 871 | for(var a=0;a<as.length;++a) |
851 | as.item(a).setAttribute('target','_blank'); | 872 | as.item(a).setAttribute('target','_blank'); |
852 | } | 873 | } |
853 | }, | 874 | }, |
854 | on_select: function() { | 875 | on_select: function() { |
855 | if(this.selection.currentIndex<0) { | 876 | if(this.selection.currentIndex<0) { |
856 | this.searchresult_props.hidden = true; | 877 | this.searchresult_props.hidden = true; |
857 | }else{ | 878 | }else{ |
858 | var p = this.photos[this.selection.currentIndex]; | 879 | var p = this.photos[this.selection.currentIndex]; |
859 | if(!p) { | 880 | if(!p) { |
860 | this.searchresult_props.hidden = true; | 881 | this.searchresult_props.hidden = true; |
861 | }else{ | 882 | }else{ |
862 | this.search_photo.src = this.fireflix.flickr.make_photo_url(p,'t'); | 883 | this.search_photo.src = this.fireflix.flickr.make_photo_url(p,'t'); |
863 | this.searchresult_title.value = p.title; | 884 | this.searchresult_title.value = p.title; |
864 | this.searchresult_title.tooltipText = p.title; | 885 | this.searchresult_title.tooltipText = p.title; |
865 | this.render_description_frame(null); | 886 | this.render_description_frame(null); |
866 | if(p.description==null && p.description==undefined) { | 887 | if(p.description==null && p.description==undefined) { |
867 | var pid = p.id; | 888 | var pid = p.id; |
868 | var ci = this.selection.currentIndex; | 889 | var ci = this.selection.currentIndex; |
869 | var _this = this; | 890 | var _this = this; |
870 | this.fireflix.flickr.api_call( | 891 | this.fireflix.flickr.api_call( |
871 | { | 892 | { |
872 | method: 'flickr.photos.getInfo', | 893 | method: 'flickr.photos.getInfo', |
873 | auth_token: 'default', | 894 | auth_token: 'default', |
874 | photo_id: p.id, | 895 | photo_id: p.id, |
875 | secret: p.secret | 896 | secret: p.secret |
876 | }, function(xr) { | 897 | }, function(xr) { |
877 | var pp = _this.photos[ci]; | 898 | var pp = _this.photos[ci]; |
878 | if(ci==_this.selection.currentIndex && pp.id==pid) { | 899 | if(ci==_this.selection.currentIndex && pp.id==pid) { |
879 | var n = xp_node('/rsp/photo',xr.responseXML); | 900 | var n = xp_node('/rsp/photo',xr.responseXML); |
880 | pp.fromNode_(n); | 901 | pp.fromNode_(n); |
881 | _this.render_description_frame(pp.description); | 902 | _this.render_description_frame(pp.description); |
882 | } | 903 | } |
883 | }, function(x,s,c,m) { | 904 | }, function(x,s,c,m) { |
884 | _this.fireflix.flickr_failure(x,s,c,m); | 905 | _this.fireflix.flickr_failure(x,s,c,m); |
885 | } | 906 | } |
886 | ); | 907 | ); |
887 | this.searchresult_props.hidden = false; | 908 | this.searchresult_props.hidden = false; |
888 | }else{ | 909 | }else{ |
889 | this.render_description_frame(p.description); | 910 | this.render_description_frame(p.description); |
890 | } | 911 | } |
891 | } | 912 | } |
892 | } | 913 | } |
893 | }, | 914 | }, |
894 | on_cmd_open: function(ev) { | 915 | on_cmd_open: function(ev) { |
895 | if(this.selection.currentIndex<0) | 916 | if(this.selection.currentIndex<0) |
896 | return; | 917 | return; |
897 | var p = this.photos[this.selection.currentIndex]; | 918 | var p = this.photos[this.selection.currentIndex]; |
898 | if(!p.id) | 919 | if(!p.id) |
899 | return; | 920 | return; |
900 | this.fireflix.openTab(this.fireflix.flickr.make_photo_url(p,'p')); | 921 | this.fireflix.openTab(this.fireflix.flickr.make_photo_url(p,'p')); |
901 | } | 922 | } |
902 | }, | 923 | }, |
903 | 924 | ||
904 | photo_html: function(p,i,l) { | 925 | photo_html: function(p,i,l) { |
905 | // TODO: add alt/title when possible | 926 | // TODO: add alt/title when possible |
906 | var rv = | 927 | var rv = |
907 | '<a href="'+this.flickr.make_photo_url(p,l)+'">' + | 928 | '<a href="'+this.flickr.make_photo_url(p,l)+'">' + |
908 | '<img src="'+this.flickr.make_photo_url(p,i)+'" />'+ | 929 | '<img src="'+this.flickr.make_photo_url(p,i)+'" />'+ |
909 | '</a>'; | 930 | '</a>'; |
910 | return rv; | 931 | return rv; |
911 | }, | 932 | }, |
912 | build_html: function(photos,uti,utl) { | 933 | build_html: function(photos,uti,utl) { |
913 | var rv = ''; | 934 | var rv = ''; |
914 | for(var i in photos) { | 935 | for(var i in photos) { |
915 | var p = photos[i]; | 936 | var p = photos[i]; |
916 | rv += this.photo_html(p,uti,utl)+'\n'; | 937 | rv += this.photo_html(p,uti,utl)+'\n'; |
917 | } | 938 | } |
918 | return rv; | 939 | return rv; |
919 | }, | 940 | }, |
920 | 941 | ||
921 | popup_content: function(s) { | 942 | popup_content: function(s) { |
922 | window.openDialog( | 943 | window.openDialog( |
923 | "chrome://fireflix/content/generated-content.xul", | 944 | "chrome://fireflix/content/generated-content.xul", |
924 | null, "dialog,chrome", this, s ); | 945 | null, "dialog,chrome", this, s ); |
925 | }, | 946 | }, |
926 | copy_to_clipboard: function(s) { | 947 | copy_to_clipboard: function(s) { |
927 | var ch = Components.classes["@mozilla.org/widget/clipboardhelper;1"] | 948 | var ch = Components.classes["@mozilla.org/widget/clipboardhelper;1"] |
928 | .getService(Components.interfaces.nsIClipboardHelper); | 949 | .getService(Components.interfaces.nsIClipboardHelper); |
929 | ch.copyString(s); | 950 | ch.copyString(s); |
930 | }, | 951 | }, |
931 | openTab: function(l) { | 952 | openTab: function(l) { |
932 | var wm = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService( | 953 | var wm = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService( |
933 | Components.interfaces.nsIWindowMediator ); | 954 | Components.interfaces.nsIWindowMediator ); |
934 | var bw = wm.getMostRecentWindow('navigator:browser'); | 955 | var bw = wm.getMostRecentWindow('navigator:browser'); |
935 | var b = bw.getBrowser(); | 956 | var b = bw.getBrowser(); |
936 | var t = b.addTab(l); | 957 | var t = b.addTab(l); |
937 | b.selectedTab = t; | 958 | b.selectedTab = t; |
938 | }, | 959 | }, |
939 | 960 | ||
940 | build_menus: function() { | 961 | build_menus: function() { |
941 | this.append_html_menu( | 962 | this.append_html_menu( |
942 | document.getElementById('sets_html_menu'), | 963 | document.getElementById('sets_html_menu'), |
943 | 'stm_','m_bop','cmdset_sets','cmd_sets_html' | 964 | 'stm_','m_bop','cmdset_sets','cmd_sets_html' |
944 | ); | 965 | ); |
945 | this.append_html_menu( | 966 | this.append_html_menu( |
946 | document.getElementById('setphotos_html_menu'), | 967 | document.getElementById('setphotos_html_menu'), |
947 | 'stm_','m_bop','cmdset_setphotos','cmd_setphotos_html' | 968 | 'stm_','m_bop','cmdset_setphotos','cmd_setphotos_html' |
948 | ); | 969 | ); |
949 | this.append_html_menu( | 970 | this.append_html_menu( |
950 | document.getElementById('uploads_html_menu'), | 971 | document.getElementById('uploads_html_menu'), |
951 | 'stm_','m_bop','cmdset_uploads','cmd_uploads_html' | 972 | 'stm_','m_bop','cmdset_uploads','cmd_uploads_html' |
952 | ); | 973 | ); |
953 | return; | 974 | return; |
954 | }, | 975 | }, |
955 | append_html_menu: function(m,imgt,lnkt,csid,cpfx) { | 976 | append_html_menu: function(m,imgt,lnkt,csid,cpfx) { |
956 | var mp = m.appendChild(document.createElement('menupopup')); | 977 | var mp = m.appendChild(document.createElement('menupopup')); |
957 | var t; | 978 | var t; |
958 | t=mp.appendChild(document.createElement('menuitem')); | 979 | t=mp.appendChild(document.createElement('menuitem')); |
959 | t.setAttribute('label',this.loc_strings.getString('menutitle_Images')); | 980 | t.setAttribute('label',this.loc_strings.getString('menutitle_Images')); |
960 | t.setAttribute('class','menuhead');t.setAttribute('disabled','true'); | 981 | t.setAttribute('class','menuhead');t.setAttribute('disabled','true'); |
961 | mp.appendChild(document.createElement('menuseparator')); | 982 | mp.appendChild(document.createElement('menuseparator')); |
962 | var cs = document.getElementById(csid); | 983 | var cs = document.getElementById(csid); |
963 | for(var iti=0;iti<imgt.length;++iti) { | 984 | for(var iti=0;iti<imgt.length;++iti) { |
964 | t = mp.appendChild(document.createElement('menu')); | 985 | t = mp.appendChild(document.createElement('menu')); |
965 | t.setAttribute('label',this.loc_strings.getString('urltype_'+imgt.charAt(iti))); | 986 | t.setAttribute('label',this.loc_strings.getString('urltype_'+imgt.charAt(iti))); |
966 | var smp = t.appendChild(document.createElement('menupopup')); | 987 | var smp = t.appendChild(document.createElement('menupopup')); |
967 | t=smp.appendChild(document.createElement('menuitem')); | 988 | t=smp.appendChild(document.createElement('menuitem')); |
968 | t.setAttribute('label',this.loc_strings.getString('menutitle_Links')); | 989 | t.setAttribute('label',this.loc_strings.getString('menutitle_Links')); |
969 | t.setAttribute('class','menuhead');t.setAttribute('disabled','true'); | 990 | t.setAttribute('class','menuhead');t.setAttribute('disabled','true'); |
970 | smp.appendChild(document.createElement('menuseparator')); | 991 | smp.appendChild(document.createElement('menuseparator')); |
971 | for(var lti=0;lti<lnkt.length;++lti) { | 992 | for(var lti=0;lti<lnkt.length;++lti) { |
972 | var csfx = imgt.charAt(iti)+lnkt.charAt(lti); | 993 | var csfx = imgt.charAt(iti)+lnkt.charAt(lti); |
973 | t=smp.appendChild(document.createElement('menuitem')); | 994 | t=smp.appendChild(document.createElement('menuitem')); |
974 | t.setAttribute('label',this.loc_strings.getString('urltype_'+lnkt.charAt(lti))); | 995 | t.setAttribute('label',this.loc_strings.getString('urltype_'+lnkt.charAt(lti))); |
975 | t.setAttribute('command',cpfx+'_'+csfx); | 996 | t.setAttribute('command',cpfx+'_'+csfx); |
976 | t=cs.appendChild(document.createElement('command')); | 997 | t=cs.appendChild(document.createElement('command')); |
977 | t.setAttribute('id',cpfx+'_'+csfx); | 998 | t.setAttribute('id',cpfx+'_'+csfx); |
978 | t.setAttribute('oncommand','fireflix.on_'+cpfx+"('"+csfx+"',event)"); | 999 | t.setAttribute('oncommand','fireflix.on_'+cpfx+"('"+csfx+"',event)"); |
979 | } | 1000 | } |
980 | } | 1001 | } |
981 | return mp; | 1002 | return mp; |
982 | }, | 1003 | }, |
983 | 1004 | ||
984 | flickr_failure: function(x,s,c,m) { | 1005 | flickr_failure: function(x,s,c,m) { |
985 | if(c==98) { // Invalid auth token | 1006 | if(c==98) { // Invalid auth token |
986 | this.flickr.reset_token(); | 1007 | this.flickr.reset_token(); |
987 | this.set_auth_state(false,false); | 1008 | this.set_auth_state(false,false); |
988 | return; | 1009 | return; |
989 | } | 1010 | } |
990 | // TODO: is that beauty? | 1011 | // TODO: is that beauty? |
991 | alert('flickr api call failed\n'+c+' '+m); | 1012 | alert('flickr api call failed\n'+c+' '+m); |
992 | } | 1013 | } |
993 | 1014 | ||
994 | }; | 1015 | }; |