photo.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  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. photo.json.url = lychee.upload_path_big + photo.json.url;
  39. },
  40. delete: function(photoIDs) {
  41. var params,
  42. buttons,
  43. photoTitle;
  44. if (!photoIDs) return false;
  45. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  46. if (photoIDs.length===1) {
  47. // Get title if only one photo is selected
  48. if (visible.photo()) photoTitle = photo.json.title;
  49. else photoTitle = album.json.content[photoIDs].title;
  50. if (photoTitle==="") photoTitle = "Untitled";
  51. }
  52. buttons = [
  53. ["", function() {
  54. photoIDs.forEach(function(id, index, array) {
  55. // Change reference for the next and previous photo
  56. if (album.json.content[id].nextPhoto!==""||album.json.content[id].previousPhoto!=="") {
  57. nextPhoto = album.json.content[id].nextPhoto;
  58. previousPhoto = album.json.content[id].previousPhoto;
  59. album.json.content[previousPhoto].nextPhoto = nextPhoto;
  60. album.json.content[nextPhoto].previousPhoto = previousPhoto;
  61. }
  62. album.json.content[id] = null;
  63. view.album.content.delete(id);
  64. });
  65. // Only when search is not active
  66. if (!visible.albums()) lychee.goto(album.getID());
  67. params = "deletePhoto&photoIDs=" + photoIDs;
  68. lychee.api(params, function(data) {
  69. if (data!==true) lychee.error(null, params, data);
  70. });
  71. }],
  72. ["", function() {}]
  73. ];
  74. if (photoIDs.length===1) {
  75. buttons[0][0] = "Delete Photo";
  76. buttons[1][0] = "Keep Photo";
  77. modal.show("Delete Photo", "Are you sure you want to delete the photo '" + photoTitle + "'?<br>This action can't be undone!", buttons);
  78. } else {
  79. buttons[0][0] = "Delete Photos";
  80. buttons[1][0] = "Keep Photos";
  81. modal.show("Delete Photos", "Are you sure you want to delete all " + photoIDs.length + " selected photo?<br>This action can't be undone!", buttons);
  82. }
  83. },
  84. setTitle: function(photoIDs) {
  85. var oldTitle = "",
  86. newTitle,
  87. params,
  88. buttons;
  89. if (!photoIDs) return false;
  90. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  91. if (photoIDs.length===1) {
  92. // Get old title if only one photo is selected
  93. if (photo.json) oldTitle = photo.json.title;
  94. else if (album.json) oldTitle = album.json.content[photoIDs].title;
  95. oldTitle = oldTitle.replace("'", "&apos;");
  96. }
  97. buttons = [
  98. ["Set Title", function() {
  99. newTitle = $(".message input.text").val();
  100. if (visible.photo()) {
  101. photo.json.title = (newTitle==="") ? "Untitled" : newTitle;
  102. view.photo.title();
  103. }
  104. photoIDs.forEach(function(id, index, array) {
  105. album.json.content[id].title = newTitle;
  106. view.album.content.title(id);
  107. });
  108. params = "setPhotoTitle&photoIDs=" + photoIDs + "&title=" + escape(encodeURI(newTitle));
  109. lychee.api(params, function(data) {
  110. if (data!==true) lychee.error(null, params, data);
  111. });
  112. }],
  113. ["Cancel", function() {}]
  114. ];
  115. 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);
  116. 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);
  117. },
  118. setAlbum: function(photoIDs, albumID) {
  119. var params,
  120. nextPhoto,
  121. previousPhoto;
  122. if (!photoIDs) return false;
  123. if (visible.photo) lychee.goto(album.getID());
  124. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  125. photoIDs.forEach(function(id, index, array) {
  126. // Change reference for the next and previous photo
  127. if (album.json.content[id].nextPhoto!==""||album.json.content[id].previousPhoto!=="") {
  128. nextPhoto = album.json.content[id].nextPhoto;
  129. previousPhoto = album.json.content[id].previousPhoto;
  130. album.json.content[previousPhoto].nextPhoto = nextPhoto;
  131. album.json.content[nextPhoto].previousPhoto = previousPhoto;
  132. }
  133. album.json.content[id] = null;
  134. view.album.content.delete(id);
  135. });
  136. params = "setPhotoAlbum&photoIDs=" + photoIDs + "&albumID=" + albumID;
  137. lychee.api(params, function(data) {
  138. if (data!==true) lychee.error(null, params, data);
  139. });
  140. },
  141. setStar: function(photoIDs) {
  142. var params;
  143. if (!photoIDs) return false;
  144. if (visible.photo()) {
  145. photo.json.star = (photo.json.star==0) ? 1 : 0;
  146. view.photo.star();
  147. }
  148. photoIDs.forEach(function(id, index, array) {
  149. album.json.content[id].star = (album.json.content[id].star==0) ? 1 : 0;
  150. view.album.content.star(id);
  151. });
  152. params = "setPhotoStar&photoIDs=" + photoIDs;
  153. lychee.api(params, function(data) {
  154. if (data!==true) lychee.error(null, params, data);
  155. });
  156. },
  157. setPublic: function(photoID, e) {
  158. var params;
  159. if (photo.json.public==2) {
  160. 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() {}]]);
  161. return false;
  162. }
  163. if (visible.photo()) {
  164. photo.json.public = (photo.json.public==0) ? 1 : 0;
  165. view.photo.public();
  166. if (photo.json.public==1) contextMenu.sharePhoto(photoID, e);
  167. }
  168. album.json.content[photoID].public = (album.json.content[photoID].public==0) ? 1 : 0;
  169. view.album.content.public(photoID);
  170. params = "setPhotoPublic&photoID=" + photoID + "&url=" + photo.getViewLink(photoID);
  171. lychee.api(params, function(data) {
  172. if (data!==true) lychee.error(null, params, data);
  173. });
  174. },
  175. setDescription: function(photoID) {
  176. var oldDescription = photo.json.description.replace("'", "&apos;"),
  177. description,
  178. params,
  179. buttons;
  180. buttons = [
  181. ["Set Description", function() {
  182. description = $(".message input.text").val();
  183. if (visible.photo()) {
  184. photo.json.description = description;
  185. view.photo.description();
  186. }
  187. params = "setPhotoDescription&photoID=" + photoID + "&description=" + escape(description);
  188. lychee.api(params, function(data) {
  189. if (data!==true) lychee.error(null, params, data);
  190. });
  191. }],
  192. ["Cancel", function() {}]
  193. ];
  194. modal.show("Set Description", "Enter a description for this photo: <input class='text' type='text' maxlength='800' placeholder='Description' value='" + oldDescription + "'>", buttons);
  195. },
  196. editTags: function(photoIDs) {
  197. var oldTags = "",
  198. tags = "";
  199. if (!photoIDs) return false;
  200. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  201. // Get tags
  202. if (visible.photo()) oldTags = photo.json.tags;
  203. if (visible.album()&&photoIDs.length===1) oldTags = album.json.content[photoIDs].tags;
  204. if (visible.album()&&photoIDs.length>1) {
  205. var same = true;
  206. photoIDs.forEach(function(id, index, array) {
  207. if(album.json.content[id].tags===album.json.content[photoIDs[0]].tags&&same===true) same = true;
  208. else same = false;
  209. });
  210. if (same) oldTags = album.json.content[photoIDs[0]].tags;
  211. }
  212. // Improve tags
  213. oldTags = oldTags.replace(/,/g, ', ');
  214. buttons = [
  215. ["Set Tags", function() {
  216. tags = $(".message input.text").val();
  217. photo.setTags(photoIDs, tags);
  218. }],
  219. ["Cancel", function() {}]
  220. ];
  221. 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);
  222. 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);
  223. },
  224. setTags: function(photoIDs, tags) {
  225. var params;
  226. if (!photoIDs) return false;
  227. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  228. // Parse tags
  229. tags = tags.replace(/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/g, ',');
  230. tags = tags.replace(/,$|^,/g, '');
  231. if (visible.photo()) {
  232. photo.json.tags = tags;
  233. view.photo.tags();
  234. }
  235. photoIDs.forEach(function(id, index, array) {
  236. album.json.content[id].tags = tags;
  237. });
  238. params = "setPhotoTags&photoIDs=" + photoIDs + "&tags=" + tags;
  239. lychee.api(params, function(data) {
  240. if (data!==true) lychee.error(null, params, data);
  241. });
  242. },
  243. deleteTag: function(photoID, index) {
  244. var tags;
  245. // Remove
  246. tags = photo.json.tags.split(',');
  247. tags.splice(index, 1);
  248. // Save
  249. photo.json.tags = tags.toString();
  250. photo.setTags([photoID], photo.json.tags);
  251. },
  252. share: function(photoID, service) {
  253. var link = "",
  254. url = photo.getViewLink(photoID),
  255. filename = "unknown";
  256. switch (service) {
  257. case 0:
  258. link = "https://twitter.com/share?url=" + encodeURI(url);
  259. break;
  260. case 1:
  261. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(photo.json.title);
  262. break;
  263. case 2:
  264. link = "mailto:?subject=" + encodeURI(photo.json.title) + "&body=" + encodeURI(url);
  265. break;
  266. case 3:
  267. lychee.loadDropbox(function() {
  268. filename = photo.json.title + "." + photo.getDirectLink().split('.').pop();
  269. Dropbox.save(photo.getDirectLink(), filename);
  270. });
  271. break;
  272. default:
  273. link = "";
  274. break;
  275. }
  276. if (link.length>5) location.href = link;
  277. },
  278. isSmall: function() {
  279. var size = {
  280. width: false,
  281. height: false
  282. };
  283. if (photo.json.width<$(window).width()-60) size.width = true;
  284. if (photo.json.height<$(window).height()-100) size.height = true;
  285. if (size.width&&size.height) return true;
  286. else return false;
  287. },
  288. getArchive: function(photoID) {
  289. var link;
  290. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", "php/api.php?function=getPhotoArchive&photoID=" + photoID);
  291. else link = location.href.replace(location.hash, "") + "php/api.php?function=getPhotoArchive&photoID=" + photoID;
  292. if (lychee.publicMode) link += "&password=" + password.value;
  293. location.href = link;
  294. },
  295. getDirectLink: function() {
  296. return $("#imageview #image").css("background-image").replace(/"/g,"").replace(/url\(|\)$/ig, "");
  297. },
  298. getViewLink: function(photoID) {
  299. if (location.href.indexOf("index.html")>0) return location.href.replace("index.html" + location.hash, "view.php?p=" + photoID);
  300. else return location.href.replace(location.hash, "view.php?p=" + photoID);
  301. }
  302. };