photo.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. /**
  2. * @name Photo Module
  3. * @description Takes care of every action a photo can handle and execute.
  4. * @author Tobias Reich
  5. * @copyright 2014 by Tobias Reich
  6. */
  7. photo = {
  8. json: null,
  9. getID: function() {
  10. var id;
  11. if (photo.json) id = photo.json.id;
  12. else id = $(".photo:hover, .photo.active").attr("data-id");
  13. if (id) return id;
  14. else return false;
  15. },
  16. load: function(photoID, albumID) {
  17. var params,
  18. checkPasswd;
  19. params = "getPhoto&photoID=" + photoID + "&albumID=" + albumID + "&password=" + password.value;
  20. lychee.api(params, function(data) {
  21. if (data==="Warning: Wrong password!") {
  22. checkPasswd = function() {
  23. if (password.value!=="") photo.load(photoID, albumID);
  24. else setTimeout(checkPasswd, 250);
  25. };
  26. checkPasswd();
  27. return false;
  28. }
  29. photo.json = data;
  30. if (!visible.photo()) view.photo.show();
  31. view.photo.init();
  32. lychee.imageview.show();
  33. setTimeout(function() { lychee.content.show() }, 300);
  34. });
  35. },
  36. parse: function() {
  37. if (!photo.json.title) photo.json.title = "Untitled";
  38. },
  39. previous: function(animate) {
  40. var delay = 0;
  41. if (photo.getID()!==false&&
  42. album.json&&
  43. album.json.content[photo.getID()]&&
  44. album.json.content[photo.getID()].previousPhoto!=="") {
  45. if (animate===true) {
  46. delay = 200;
  47. $("#image").css({
  48. WebkitTransform: 'translateX(100%)',
  49. MozTransform: 'translateX(100%)',
  50. transform: 'translateX(100%)',
  51. opacity: 0
  52. });
  53. }
  54. setTimeout(function() {
  55. if (photo.getID()===false) return false;
  56. lychee.goto(album.getID() + "/" + album.json.content[photo.getID()].previousPhoto)
  57. }, delay);
  58. }
  59. },
  60. next: function(animate) {
  61. var delay = 0;
  62. if (photo.getID()!==false&&
  63. album.json&&
  64. album.json.content[photo.getID()]&&
  65. album.json.content[photo.getID()].nextPhoto!=="") {
  66. if (animate===true) {
  67. delay = 200;
  68. $("#image").css({
  69. WebkitTransform: 'translateX(-100%)',
  70. MozTransform: 'translateX(-100%)',
  71. transform: 'translateX(-100%)',
  72. opacity: 0
  73. });
  74. }
  75. setTimeout(function() {
  76. if (photo.getID()===false) return false;
  77. lychee.goto(album.getID() + "/" + album.json.content[photo.getID()].nextPhoto);
  78. }, delay);
  79. }
  80. },
  81. duplicate: function(photoIDs) {
  82. var params;
  83. if (!photoIDs) return false;
  84. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  85. params = "duplicatePhoto&photoIDs=" + photoIDs;
  86. lychee.api(params, function(data) {
  87. if (data!==true) lychee.error(null, params, data);
  88. else album.load(album.getID(), false);
  89. });
  90. },
  91. delete: function(photoIDs) {
  92. var params,
  93. buttons,
  94. photoTitle;
  95. if (!photoIDs) return false;
  96. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  97. if (photoIDs.length===1) {
  98. // Get title if only one photo is selected
  99. if (visible.photo()) photoTitle = photo.json.title;
  100. else photoTitle = album.json.content[photoIDs].title;
  101. if (photoTitle==="") photoTitle = "Untitled";
  102. }
  103. buttons = [
  104. ["", function() {
  105. var nextPhoto,
  106. previousPhoto;
  107. photoIDs.forEach(function(id, index, array) {
  108. // Change reference for the next and previous photo
  109. if (album.json.content[id].nextPhoto!==""||album.json.content[id].previousPhoto!=="") {
  110. nextPhoto = album.json.content[id].nextPhoto;
  111. previousPhoto = album.json.content[id].previousPhoto;
  112. album.json.content[previousPhoto].nextPhoto = nextPhoto;
  113. album.json.content[nextPhoto].previousPhoto = previousPhoto;
  114. }
  115. album.json.content[id] = null;
  116. view.album.content.delete(id);
  117. });
  118. // Only when search is not active
  119. if (!visible.albums()) lychee.goto(album.getID());
  120. params = "deletePhoto&photoIDs=" + photoIDs;
  121. lychee.api(params, function(data) {
  122. if (data!==true) lychee.error(null, params, data);
  123. });
  124. }],
  125. ["", function() {}]
  126. ];
  127. if (photoIDs.length===1) {
  128. buttons[0][0] = "Delete Photo";
  129. buttons[1][0] = "Keep Photo";
  130. modal.show("Delete Photo", "Are you sure you want to delete the photo '" + photoTitle + "'?<br>This action can't be undone!", buttons);
  131. } else {
  132. buttons[0][0] = "Delete Photos";
  133. buttons[1][0] = "Keep Photos";
  134. modal.show("Delete Photos", "Are you sure you want to delete all " + photoIDs.length + " selected photo?<br>This action can't be undone!", buttons);
  135. }
  136. },
  137. setTitle: function(photoIDs) {
  138. var oldTitle = "",
  139. newTitle,
  140. params,
  141. buttons;
  142. if (!photoIDs) return false;
  143. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  144. if (photoIDs.length===1) {
  145. // Get old title if only one photo is selected
  146. if (photo.json) oldTitle = photo.json.title;
  147. else if (album.json) oldTitle = album.json.content[photoIDs].title;
  148. oldTitle = oldTitle.replace("'", "&apos;");
  149. }
  150. buttons = [
  151. ["Set Title", function() {
  152. // Get input
  153. newTitle = $(".message input.text").val();
  154. // Remove html from input
  155. newTitle = lychee.removeHTML(newTitle);
  156. if (visible.photo()) {
  157. photo.json.title = (newTitle==="") ? "Untitled" : newTitle;
  158. view.photo.title();
  159. }
  160. photoIDs.forEach(function(id, index, array) {
  161. album.json.content[id].title = newTitle;
  162. view.album.content.title(id);
  163. });
  164. params = "setPhotoTitle&photoIDs=" + photoIDs + "&title=" + escape(encodeURI(newTitle));
  165. lychee.api(params, function(data) {
  166. if (data!==true) lychee.error(null, params, data);
  167. });
  168. }],
  169. ["Cancel", function() {}]
  170. ];
  171. if (photoIDs.length===1) modal.show("Set Title", "Enter a new title for this photo: <input class='text' type='text' maxlength='30' placeholder='Title' value='" + oldTitle + "'>", buttons);
  172. else modal.show("Set Titles", "Enter a title for all " + photoIDs.length + " selected photos: <input class='text' type='text' maxlength='30' placeholder='Title' value=''>", buttons);
  173. },
  174. setAlbum: function(photoIDs, albumID) {
  175. var params,
  176. nextPhoto,
  177. previousPhoto;
  178. if (!photoIDs) return false;
  179. if (visible.photo) lychee.goto(album.getID());
  180. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  181. photoIDs.forEach(function(id, index, array) {
  182. // Change reference for the next and previous photo
  183. if (album.json.content[id].nextPhoto!==""||album.json.content[id].previousPhoto!=="") {
  184. nextPhoto = album.json.content[id].nextPhoto;
  185. previousPhoto = album.json.content[id].previousPhoto;
  186. album.json.content[previousPhoto].nextPhoto = nextPhoto;
  187. album.json.content[nextPhoto].previousPhoto = previousPhoto;
  188. }
  189. album.json.content[id] = null;
  190. view.album.content.delete(id);
  191. });
  192. params = "setPhotoAlbum&photoIDs=" + photoIDs + "&albumID=" + albumID;
  193. lychee.api(params, function(data) {
  194. if (data!==true) lychee.error(null, params, data);
  195. });
  196. },
  197. setStar: function(photoIDs) {
  198. var params;
  199. if (!photoIDs) return false;
  200. if (visible.photo()) {
  201. photo.json.star = (photo.json.star==0) ? 1 : 0;
  202. view.photo.star();
  203. }
  204. photoIDs.forEach(function(id, index, array) {
  205. album.json.content[id].star = (album.json.content[id].star==0) ? 1 : 0;
  206. view.album.content.star(id);
  207. });
  208. params = "setPhotoStar&photoIDs=" + photoIDs;
  209. lychee.api(params, function(data) {
  210. if (data!==true) lychee.error(null, params, data);
  211. });
  212. },
  213. setPublic: function(photoID, e) {
  214. var params;
  215. if (photo.json.public==2) {
  216. modal.show("Public Album", "This photo is located in a public album. To make this photo private or public, edit the visibility of the associated album.", [["Show Album", function() { lychee.goto(photo.json.original_album) }], ["Close", function() {}]]);
  217. return false;
  218. }
  219. if (visible.photo()) {
  220. photo.json.public = (photo.json.public==0) ? 1 : 0;
  221. view.photo.public();
  222. if (photo.json.public==1) contextMenu.sharePhoto(photoID, e);
  223. }
  224. album.json.content[photoID].public = (album.json.content[photoID].public==0) ? 1 : 0;
  225. view.album.content.public(photoID);
  226. params = "setPhotoPublic&photoID=" + photoID;
  227. lychee.api(params, function(data) {
  228. if (data!==true) lychee.error(null, params, data);
  229. });
  230. },
  231. setDescription: function(photoID) {
  232. var oldDescription = photo.json.description.replace("'", "&apos;"),
  233. description,
  234. params,
  235. buttons;
  236. buttons = [
  237. ["Set Description", function() {
  238. // Get input
  239. description = $(".message input.text").val();
  240. // Remove html from input
  241. description = lychee.removeHTML(description);
  242. if (visible.photo()) {
  243. photo.json.description = description;
  244. view.photo.description();
  245. }
  246. params = "setPhotoDescription&photoID=" + photoID + "&description=" + escape(encodeURI(description));
  247. lychee.api(params, function(data) {
  248. if (data!==true) lychee.error(null, params, data);
  249. });
  250. }],
  251. ["Cancel", function() {}]
  252. ];
  253. modal.show("Set Description", "Enter a description for this photo: <input class='text' type='text' maxlength='800' placeholder='Description' value='" + oldDescription + "'>", buttons);
  254. },
  255. editTags: function(photoIDs) {
  256. var oldTags = "",
  257. tags = "",
  258. buttons;
  259. if (!photoIDs) return false;
  260. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  261. // Get tags
  262. if (visible.photo()) oldTags = photo.json.tags;
  263. if (visible.album()&&photoIDs.length===1) oldTags = album.json.content[photoIDs].tags;
  264. if (visible.album()&&photoIDs.length>1) {
  265. var same = true;
  266. photoIDs.forEach(function(id, index, array) {
  267. if(album.json.content[id].tags===album.json.content[photoIDs[0]].tags&&same===true) same = true;
  268. else same = false;
  269. });
  270. if (same) oldTags = album.json.content[photoIDs[0]].tags;
  271. }
  272. // Improve tags
  273. oldTags = oldTags.replace(/,/g, ', ');
  274. buttons = [
  275. ["Set Tags", function() {
  276. tags = $(".message input.text").val();
  277. photo.setTags(photoIDs, tags);
  278. }],
  279. ["Cancel", function() {}]
  280. ];
  281. if (photoIDs.length===1) modal.show("Set Tags", "Enter your tags for this photo. You can add multiple tags by separating them with a comma: <input class='text' type='text' maxlength='800' placeholder='Tags' value='" + oldTags + "'>", buttons);
  282. else modal.show("Set Tags", "Enter your tags for all " + photoIDs.length + " selected photos. Existing tags will be overwritten. You can add multiple tags by separating them with a comma: <input class='text' type='text' maxlength='800' placeholder='Tags' value='" + oldTags + "'>", buttons);
  283. },
  284. setTags: function(photoIDs, tags) {
  285. var params;
  286. if (!photoIDs) return false;
  287. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  288. // Parse tags
  289. tags = tags.replace(/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/g, ',');
  290. tags = tags.replace(/,$|^,|(\ ){0,}$/g, '');
  291. // Remove html from input
  292. tags = lychee.removeHTML(tags);
  293. if (visible.photo()) {
  294. photo.json.tags = tags;
  295. view.photo.tags();
  296. }
  297. photoIDs.forEach(function(id, index, array) {
  298. album.json.content[id].tags = tags;
  299. });
  300. params = "setPhotoTags&photoIDs=" + photoIDs + "&tags=" + tags;
  301. lychee.api(params, function(data) {
  302. if (data!==true) lychee.error(null, params, data);
  303. });
  304. },
  305. deleteTag: function(photoID, index) {
  306. var tags;
  307. // Remove
  308. tags = photo.json.tags.split(',');
  309. tags.splice(index, 1);
  310. // Save
  311. photo.json.tags = tags.toString();
  312. photo.setTags([photoID], photo.json.tags);
  313. },
  314. share: function(photoID, service) {
  315. var link = "",
  316. url = photo.getViewLink(photoID),
  317. filename = "unknown";
  318. switch (service) {
  319. case 0:
  320. link = "https://twitter.com/share?url=" + encodeURI(url);
  321. break;
  322. case 1:
  323. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(photo.json.title);
  324. break;
  325. case 2:
  326. link = "mailto:?subject=" + encodeURI(photo.json.title) + "&body=" + encodeURI(url);
  327. break;
  328. case 3:
  329. lychee.loadDropbox(function() {
  330. filename = photo.json.title + "." + photo.getDirectLink().split('.').pop();
  331. Dropbox.save(photo.getDirectLink(), filename);
  332. });
  333. break;
  334. default:
  335. link = "";
  336. break;
  337. }
  338. if (link.length>5) location.href = link;
  339. },
  340. isSmall: function() {
  341. var size = {
  342. width: false,
  343. height: false
  344. };
  345. if (photo.json.width<$(window).width()-60) size.width = true;
  346. if (photo.json.height<$(window).height()-100) size.height = true;
  347. if (size.width&&size.height) return true;
  348. else return false;
  349. },
  350. getArchive: function(photoID) {
  351. var link;
  352. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", "php/api.php?function=getPhotoArchive&photoID=" + photoID);
  353. else link = location.href.replace(location.hash, "") + "php/api.php?function=getPhotoArchive&photoID=" + photoID;
  354. if (lychee.publicMode) link += "&password=" + password.value;
  355. location.href = link;
  356. },
  357. getDirectLink: function() {
  358. return $("#imageview #image").css("background-image").replace(/"/g,"").replace(/url\(|\)$/ig, "");
  359. },
  360. getViewLink: function(photoID) {
  361. if (location.href.indexOf("index.html")>0) return location.href.replace("index.html" + location.hash, "view.php?p=" + photoID);
  362. else return location.href.replace(location.hash, "view.php?p=" + photoID);
  363. }
  364. };