// ==UserScript== // @name flickrAwardCounter // @namespace http://www.phazeshift.co.uk/download/ // @description UserScript to count award images in Flickr photo comments // @version 2.32 // @author phazeshift et al. // @license MIT // @include http*://*flickr.com/*photos/*/* // @include http*://*flickr.com/groups/*/discuss* // @include http*://*flickr.com/groups/*/pool* // @grant GM_setValue // @grant GM_getValue // @grant GM_xmlhttpRequest // @grant GM_log // @grant GM_registerMenuCommand // @downloadURL none // ==/UserScript== /* Installation ============ First you need a UserScript manager extension for your browser. The state of the art seems to be Tampermonkey these days. Works with Firefox and Chrome. Even Edge I'm told. https://www.tampermonkey.net. For Safari, it now looks like the preferred manager is Stay (extension + app) downloadable from the App Store. https://apps.apple.com/gb/app/stay-web-only-browsing/id1591620171. Then visit the script's new home page at Greasy Fork: https://greasyfork.org/en/scripts/441654-flickrawardcounter Click the green Install or Update button at the top left of the page. That's it. You can now visit or reload one of the Flickr pages the script is modifying: photo details, group pool, group discuss. Release Notes ============ v1.0 Counts the comments on the current photo page using javascript v2.0 Counts the comments for a photo using the flickr API on Group, Pool and Photo pages v2.1 Updated to be more compatible with other scripts; no longer removes PoolList class from pool page. Fixed reloading of comments when clicking Show all. v2.2 Allows multiple images to be specified per award, (separated with ';') and allows dupes for certain people to be ignored (separated with ';') v2.3 Config dialog allows more awards to be added instead of being off the page. v2.4 Added Sort & Edit options to config. Added Auto update function. v2.5 Added option to display number favourites. v2.6 Fixed clear config option v2.7 Changed search code to find text that isn't in image tags v2.8 Added option to hide awards with count = 0 v2.9 Fixed multiple URL config option & counting multiple awards in single comment Added option to save settings online and tidied config page Fixed version check code v2.10 Applied Alesas patch to work with the new flickr layout. Thanks to Alesa for the patch and Tambako for letting me know about the new layout. Added option to display number of galleries. v2.11 Fixed an issue that caused script version to be checked on every page load when running under some Greasemonkey emulators that don't support storing settings. Changed SaveCloudSettings to use a post request to prevent errors with long URLs Added option to export counter settings to a string Fixed compatibility issue with 'Flickr Group Pool Admin - Warn + Delete' script Updated Pool display technique to interfere less with other scripts v2.12 Added Aleas patch for update check exception handler Reverted change to pool handling as award counts were unreadable Fixed detection of image url for pool photos after recent flickr change v2.13 Fixed detection of image id for individual photos after recent flickr change v2.14 Fixed count display spacing on comment threads Fixed counter to work with new pool layout v2.15 Fixed show all on group discussion page v2.16 Fixed Flickr Urls to support https. Thanks to Dave_O1 Added support for justified pool layout Added greasemonkey @grant metadata v2.17 Fixed SSL support Fixed single photo view v2.18 Fixed discussion view v2.19 Fixed retrieval of photo id v2.20 Fixed retrieval of photo id again, using location instead of document content. Added @version and @license GM tags. MB 2022-03-17. v2.21 Fixed pool view in 'new' layout as opposed to deprecated 'classic'. Tweaked photo id extraction regular expression. Policed global leaks and wayward var declarations. Added @author tag. MB 2022-03-24. v2.22 Fixed discussion view in 'new' (default) layout format. Awards pane in each photo of the 'new' pool layout now scrollable if too many awards to display. MB 2022-03-28. v2.23 Updated configuration panel to display properly in modern browsers. Removed cloud export for settings (phazeshift endpoint no longer available). Fixed script version check now based on Greasy Fork repository. Displays update link in the configuration panel when new version is available. MB 2022-04-14. v2.24 Updated event handler so that awards for the selected photo are displayed directly when going from one photo to the next or previous in photo page view, as well as when clicking on a photo tile in the new standard pool and stream views. No more page reloading necessary. Updated photo page to display actual comments separately from awards. Click link to alternate display. Feature can be disabled/enabled at the bottom of the configuration panel. MB 2022-04-22. v2.25 Corrected an error in displaying comments elapsed time. Updated separated comments display for comments / awards / both options. Added optional display of fac configured awards only for awards and both options. Display awards in columns in photo details page. MB 2022-05-20. v2.26 Substitute default buddy icon when loading of comment author's icon fails. fac-only checkbox state sticks from one photo details page to the next. comments/awards/both display mode sticks from one photo details page to the next. corrects missing or faulty dimensions of award images automatically. corrects protocol of award images from http to https automatically when loaded from flickr domain to conform to the page's Content Security Policy. Number of columns for awards display now defaults to 1, adjustable in configuration panel. MB 2022-05-23. v2.27 List comments/awards in reverse chronological order, most recent first. Comment box moved on top of comments list. New 'reverse comments' checkbox in configuration panel. Corrected another error in displaying comments elapsed time. MB 2022-06-01. v2.28 Updated separated comments display to adapt to new (and clearer) Flickr photo page HTML coding. Well done Flickr :-) New separate real comments and awards (fac / all) counts in the photo page. Awards are Flickr comments containing either an image or a link. Real comments are text only. MB 2023-09-22. v2.29 Corrected comments menu button encoding in 'separate awards' mode so that own comments are editable and deletable when shown in a photo page published by somebody else. MB 2023-09-24. v2.30 Corrected comments/awards menu to adapt to modern javascript syntax for HTMLCollections. Fixed display of awards on Photo page initial load to adapt to new Flickr Asynchronous loading of location information. MB 2024-01-08 v2.31 Further corrected display of awards on Photo page to allow for photos without geotagging. MB 2024-01-12 v2.32 Further corrected display of awards on Photo page to allow for photos without any dynamic loading information. MB 2024-01-13 */ // Config Stuff var glblConfigAwards = undefined; var glblAllPhotos = undefined; var glblCommentsText = undefined; var glblAuthors = {}; var glblLastPhotoId = undefined; var glblPhotoId = undefined; var glblMode = undefined; var glblAllowDupesFrom = undefined; var glblVersion = '2.32'; var glblServerVersion = glblVersion; var glblLastCheckedVersion = undefined; var glblScriptUrl = 'http://www.phazeshift.co.uk/files/flickrawardcounter.user.js'; var glblScriptVersionUrl = 'https://greasyfork.org/en/scripts/441654-flickrawardcounter.json'; var glblUpdateCheck = true; var glblFavourites = false; var glblGalleries = false; var glblHideZeroCount = false; var glblPostAwards = true; var glblSeparateAwards = true; var glblFacOnly = true; var glblColumns = 1; var glblCommentsDisplayTab = 'comments'; var glblReverseComments = true; var glblApiKey = 'cf7bfd7c92fcbea46bb7bce79b81ead7'; const SinglePhotoMode = 'Single'; const DiscussMode = 'Group'; const PoolMode = 'Pool'; const ConfigureLink = '( configure )'; const AwardCounter = 'Flickr Award Counter '; const PoolAwardXPath = "//div[@class='flickraward']"; const AwardInnerXPath = ".//span[@id='flickraward-awardcount-inner']"; const AwardFooterXPath = ".//span[@id='awardcount-awardfooter']"; const AwardToHideXPath = ".//span[@id='flickraward-awardcount-tohide']"; // Wait for an element before resolving a promise // @param {String} querySelector - Selector of element to wait for // @param {Integer} timeout - Milliseconds to wait before timing out, or 0 for no timeout function waitForElement(querySelector, timeout) { return new Promise((resolve, reject) => { var timer = false; if (document.querySelectorAll(querySelector).length) return resolve(); const observer = new MutationObserver(() => { if (document.querySelectorAll(querySelector).length) { observer.disconnect(); if(timer !== false) clearTimeout(timer); return resolve(); } }); observer.observe(document.body, { childList: true, subtree: true }); if (timeout) { timer = setTimeout(() => { observer.disconnect(); reject(); }, timeout); } }); } // Parse cookies from cookie string function cookieParser(s) { if (s === '') { return {}; } let pairs = s.split(";"); let splittedPairs = pairs.map(cookie => cookie.split("=")); const cookieObj = splittedPairs.reduce(function (obj, cookie) { obj[decodeURIComponent(cookie[0].trim())] = decodeURIComponent(cookie[1].trim()); return obj; }, {}) return cookieObj; } function Save() { GM_setValue('awards', CreateSaveAwardStr()); GM_setValue('awardsText', CreateSaveCommentsStr()); if (glblAllowDupesFrom) { GM_setValue('awards-allow-dupes-from', glblAllowDupesFrom.join(';').toLowerCase()); } GM_setValue('favourites', glblFavourites); GM_setValue('galleries', glblGalleries); GM_setValue('hidezerocount', glblHideZeroCount); GM_setValue('separateawards', glblSeparateAwards); GM_setValue('updatecheck', glblUpdateCheck); GM_setValue('columns', glblColumns); GM_setValue('postawards', glblPostAwards); GM_setValue('reversecomments', glblReverseComments); } function SaveUpdateInfo() { GM_setValue('serverversion', glblServerVersion); if (glblLastCheckedVersion) { GM_setValue('lastcheckedversion',glblLastCheckedVersion.getTime().toString()); } } function GmSettingsWorking() { GM_setValue('gmsettingstest',glblVersion); return (glblVersion == GM_getValue('gmsettingstest','')); } function Load() { var buf = ''; ParseSaveAwardStr(GM_getValue('awards', '')); ParseSaveCommentsStr(GM_getValue('awardsText', '')); buf = GM_getValue('awards-allow-dupes-from', ''); if (buf.length > 0){ glblAllowDupesFrom = buf.toLowerCase().split(';'); } glblServerVersion = GM_getValue('serverversion',glblServerVersion); buf = GM_getValue('lastcheckedversion'); if (buf && buf != ''){ glblLastCheckedVersion = new Date(); glblLastCheckedVersion.setTime(buf); } glblColumns = GM_getValue('columns', glblColumns); glblFacOnly = GM_getValue('faconly', glblFacOnly); glblCommentsDisplayTab = GM_getValue('displaytab', glblCommentsDisplayTab); glblUpdateCheck = GM_getValue('updatecheck', glblUpdateCheck); glblFavourites = GM_getValue('favourites',glblFavourites); glblGalleries = GM_getValue('galleries',glblGalleries); glblHideZeroCount = GM_getValue('hidezerocount',glblHideZeroCount); glblSeparateAwards = GM_getValue('separateawards',glblSeparateAwards); glblPostAwards = GM_getValue('postawards',glblPostAwards); glblReverseComments = GM_getValue('reversecomments',glblReverseComments); } function CreateSaveAwardStr() { var buf = ''; for (var i = 0; i < glblConfigAwards.length; i++) { if (glblConfigAwards[i] != undefined) { buf = buf + escape(glblConfigAwards[i].Name) + ',' + escape(glblConfigAwards[i].Url.join(';')) + "|"; } } buf = buf.substring(0, buf.length - 1); return buf; } function CreateSaveCommentsStr() { //stringify award comments var buf = '', i, j, k, max; for (i = 0; i < glblConfigAwards.length; i++) { if (glblConfigAwards[i] != undefined && 'Comments' in glblConfigAwards[i]) { buf += escape(glblConfigAwards[i].Name) + ','; max = k = 0; for (j = 0; j < glblConfigAwards[i].Comments.length; j++) { if (glblConfigAwards[i].Comments[j].count > max) { max = glblConfigAwards[i].Comments[j].count; k = j; } } buf += escape(glblConfigAwards[i].Comments[k].text) + '|'; } } buf = buf.substring(0, buf.length - 1); return buf; } function ParseSaveAwardStr(buf) { var Items = [], Items2 = []; glblConfigAwards = new Array(); if (buf == undefined) { return; } Items = buf.split('|'); for (var i = 0; i < Items.length; i++) { if (Items[i] != '') { Items2 = Items[i].split(','); try { AddAward(unescape(Items2[0]),unescape(Items2[1])); } catch (ex) { alert(ex) } } } } function ParseSaveCommentsStr(buf) { var elements = [], name, text = '', i, index = 0, records = [], fields = []; if (! buf) { return; } records = buf.split('|') for (i = 0; i < records.length; i++) { if (records[i]) { fields = records[i].split(','); name = unescape(fields[0]); text = unescape(fields[1]); index = FindAwardPosByName(name); if (index != -1) { glblConfigAwards[index].Comments = []; glblConfigAwards[index].Comments.push({'text': text, 'count': 0}); } } } } function CmpConfigAwards(a, b) { var x = a.Name.toLowerCase(), y = b.Name.toLowerCase(); return ((x < y) ? -1 : ((x > y) ? 1 : 0)); } function Sort() { glblConfigAwards.sort(CmpConfigAwards); ConfigDisplayAwards(); } function SortOne(awardId, up) { var tmpAward, newPos, i = FindAwardPosByName(awardId); if (i == -1) {return; } tmpAward = glblConfigAwards[i]; if (up) { newPos = i - 1; } else { newPos = i + 1; } if ((newPos < 0) || newPos > glblConfigAwards.length - 1) { return; } glblConfigAwards[i] = glblConfigAwards[newPos]; glblConfigAwards[newPos] = tmpAward; ConfigDisplayAwards(); } function FindAwardByName(awardid) { var i = FindAwardPosByName(awardid); if (i == -1) return undefined; return glblConfigAwards[i]; } function FindAwardPosByName(awardid) { var Award = {}; for (var i=0; i < glblConfigAwards.length; i++) { if (glblConfigAwards[i] != undefined) { Award = glblConfigAwards[i]; if (Award.Name == awardid) { return i; } } } return -1; } function ConfigDisplayAwardRow(buf, Award, pos, total) { buf = ''; buf += '' + ConvertTags(Award.Name) + ''; buf += '' + ConvertTags(Award.Url.join(';')) + ''; buf += 'e'; buf += 'd'; buf += ''; if (pos != 0) buf += '/\\'; buf += '' buf += ''; if (pos != total) buf += '\\/'; buf += '' buf += '' return buf; } function ConfigDisplayAwards() { var varElement = document.getElementById('AwardCounterVarList'), buf = '', i, Award, awardAdded = false; for (i = 0; i < glblConfigAwards.length; i++) { if (glblConfigAwards[i]) { Award = glblConfigAwards[i]; buf += ConfigDisplayAwardRow(buf, Award, i, glblConfigAwards.length - 1); awardAdded = true; } } if (!awardAdded) { buf = 'None defined.'; } // Replace html with new stuff varElement.innerHTML = buf; } function DeleteElement(elementname) { var varElement = document.getElementById(elementname); if (varElement) { varElement.parentNode.removeChild(varElement); } } function SafeSetElementValue(elename, elevalue) { var varElement = document.getElementById(elename); if (varElement) { varElement.value = elevalue; } } function trim(stringToTrim) { return stringToTrim.replace(/^\s+|\s+$/g,""); } function TrimArray(arr) { for (var i = 0; i -1) return false; if (Value.indexOf(',') > -1) return false; return true; } function AddAward(Name, Url) { var newAward = true; if (!Name) {return}; if (!Url) {return}; Name = RemoveTags(Name); var Award = FindAwardByName(Name); if (!CheckString(Name)) { throw('Name contains a \'|\' or a \',\' which isn\'t valid'); } if (!CheckString(Url)) { throw('Url contains a \'|\' or a \',\' which isn\'t valid'); } if (Award != undefined) { newAward = false; } if (newAward) { Award = {"Name" : "", "Url" : ""}; } Award.Name = Name; Award.Url = TrimArray(Url.split(';')); if (newAward) { glblConfigAwards[glblConfigAwards.length] = Award; } } function EditAward(Name) { var Award = FindAwardByName(Name); if (Award == undefined) return; document.getElementById("AwardName").value = Award.Name; document.getElementById("AwardUrl").value = Award.Url.join(';'); } function RemoveAward(Name) { var i = FindAwardPosByName(Name); if (i != -1) { glblConfigAwards[i] = undefined; } ConfigDisplayAwards(); } function NewerVersion(serverVersion, currentVersion) { serverVersion = serverVersion.split("."); currentVersion = currentVersion.split("."); var i; for (i = 0; i < serverVersion.length; i++) { if (parseInt(serverVersion[i]) > parseInt(currentVersion[i])) return true; } return false; } function CreateConfigPage() { var newDiv = document.createElement('div'), awardSeparationEnabled, reverseCommentsEnabled, reverseCommentsRow, htmlTemplate = `

Flickr Award Counter

**UPDATE**

Version **VERSION** © copyright 2007-2024 Phazeshift et al. Re-released under MIT License.

This is a small UserScript to count the number of awards given to photos in groups on Flickr. It will count any number of different awards given by users. It will ignore duplicate awards of the same type from a user. To start, just add a name for the award below and paste the url of the image for the award, click Add, then click Save.

Registered Awards
Sort Delete All
Award Name Award Image Url        
Add
Allow Duplicates From        
You can specify a list of users to allow duplicate awards on the same photo for.
Display awards in
show favourites This option will show the number of users that have added a picture as a favourite. This option is a little slower, as it requires a second call to flickr.
show galleries This option will show the number of galleries a picture has been added to. This option is a little slower, as it requires a second call to flickr.
hide zero count This option will hide awards with a count of zero.
separate awards from comments This option will show actual comments only in the comments pane. Click 'show awards' to display awards instead.
reverse comments order This option will show list comments and awards in reverse chronological order, most recent first, and move the comment box to the top of the comments list.
post awards This option will show a small selection box in all photos in group pages. Click 'post awards' to award all selected photos in the page.
Export settings Export Import
This option will allow you to save and restore your awards as a string that can be copied to a text file. To save your settings, leave the box blank and click Export. Copy the string that pops in the box and paste it somewhere else. To load your settings, just paste a string (copied from some text backup or another instance of FlickrAwardCounter) in the box and click Import.
Save Cancel
`, cssTemplate = ` #flickrawardconfig-main { position:absolute; top: **TOP**px; left: **LEFT**px; border: thin solid; width: 800px; padding: 20px; font-family: Arial; text-align: left; background-color: #eee; color: black; z-index: 10000; } #AwardCounterVarList, #AwardCounterExports, #AwardCounterActions { width: 780px; margin-top: 10px; } #AwardCounterVarListFooter, #AwardCounterInputs, #AwardCounterOptions { width: 780px; } #AwardCounterVarList tr:first-child, #AwardCounterExports tr:first-child { border-top: 1px solid #ccc; ! important; border-bottom: 1px solid #e3e3e3; ! important; } #AwardCounterVarListFooter tr::before, #AwardCounterVarList tr::before, #AwardCounterInputs tr::before, #AwardCounterOptions tr::before, #AwardCounterExports tr::before, #AwardCounterActions tr::before { content: none; ! important; } #AwardCounterVarListFooter tr::after, #AwardCounterVarList tr::after, #AwardCounterInputs tr::after, #AwardCounterOptions tr::after, #AwardCounterExports tr::after, #AwardCounterActions tr::after { content: none; ! important; } #AwardCounterVarList td { overflow: hidden; text-overflow: ellipsis; } #AwardCounterInputs tr, #AwardCounterOptions tr, #AwardCounterActions tr { border: none; } td.col1 { width: 150px; } td.col2 { width: 480px; } td.col3, td.col4, td.col2s { width: 30px; } td.col5, td.col6 { width: 30px; } td.col1 input[type=text], td.col2 input[type=text] { width: 100%; } #AwardCounterOptions tr.disabled { color: #ddd; } `; cssTemplate = cssTemplate.replace('**TOP**', document.body.scrollTop + 50); cssTemplate = cssTemplate.replace('**LEFT**', document.body.scrollLeft + 40); AddGlobalStyle(cssTemplate); htmlTemplate = htmlTemplate.replace('**VERSION**', glblVersion); htmlTemplate = htmlTemplate.replace('**UPDATE**', (NewerVersion(glblServerVersion, glblVersion)) ? '

Please update to version ' + glblServerVersion + '.

' : ''); htmlTemplate = htmlTemplate.replace('**Favourites**', (glblFavourites) ? ' checked="checked"' : ''); htmlTemplate = htmlTemplate.replace('**Galleries**', (glblGalleries) ? ' checked="checked"' : ''); htmlTemplate = htmlTemplate.replace('**HideZeroCount**', (glblHideZeroCount) ? ' checked="checked"' : ''); htmlTemplate = htmlTemplate.replace('**SeparateAwards**', (glblSeparateAwards) ? ' checked="checked"' : ''); htmlTemplate = htmlTemplate.replace('**PostAwards**', (glblPostAwards) ? ' checked="checked"' : ''); htmlTemplate = htmlTemplate.replace('**ReverseComments**', (glblReverseComments) ? ' checked="checked"' : ''); newDiv.setAttribute('id','flickrawardconfig-container'); newDiv.innerHTML = htmlTemplate; document.body.insertBefore(newDiv, document.body.firstChild); if (glblColumns > 1) { document.getElementById('ColumnsCount').value = glblColumns + ' columns'; } else if (glblColumns == 1) { document.getElementById('ColumnsCount').value = glblColumns + ' column'; } awardSeparationEnabled = document.getElementById('AwardSeparationEnabled'); reverseCommentsEnabled = document.getElementById('ReverseCommentsEnabled'); reverseCommentsRow = reverseCommentsEnabled.parentElement.parentElement; if (awardSeparationEnabled && reverseCommentsEnabled) { if (! awardSeparationEnabled.checked) { reverseCommentsEnabled.disabled = true; reverseCommentsRow.classList.add('disabled'); } awardSeparationEnabled.addEventListener('click', function(event) { if (event.target.checked) { reverseCommentsEnabled.disabled = false; reverseCommentsRow.classList.remove('disabled'); } else { reverseCommentsEnabled.checked = false; reverseCommentsEnabled.disabled = true; reverseCommentsRow.classList.add('disabled'); } }); } } // Handle Events function EventAdd() { try { var AwardName = document.getElementById("AwardName").value; var AwardUrl = document.getElementById("AwardUrl").value; AddAward(AwardName,AwardUrl); document.getElementById("AwardName").value = ''; document.getElementById("AwardUrl").value = ''; ConfigDisplayAwards(); } catch (ex) { alert(ex); } } function EventCancel() { Load(); DeleteElement("flickrawardconfig-container"); } function EventExportSettings() { document.getElementById("ExportSettings").value = CreateSaveAwardStr(); } function EventImportSettings() { ParseSaveAwardStr(document.getElementById("ExportSettings").value); ConfigDisplayAwards(); } function EventSave() { var buf = document.getElementById("AwardAllowDupesFrom").value, cols = document.getElementById("ColumnsCount").value; if (buf.length > 0) { glblAllowDupesFrom = TrimArray(buf.toLowerCase().split(';')); } glblColumns = (cols) ? parseInt(cols, 10) : 0; glblFavourites = document.getElementById("AwardFavouritesEnabled").checked; glblGalleries = document.getElementById("AwardGalleriesEnabled").checked; glblHideZeroCount = document.getElementById("AwardHideZeroCountEnabled").checked; glblSeparateAwards = document.getElementById("AwardSeparationEnabled").checked; glblPostAwards = document.getElementById("PostAwardsEnabled").checked; glblReverseComments = document.getElementById("ReverseCommentsEnabled").checked; Save(); EventCancel(); GetAwardCounts(); } function EventSortAll() { Sort(); } function GetIdFromClicked(clickedOn, eventType){ var idstart = clickedOn.indexOf(eventType) + eventType.length + 1; var awardid = clickedOn.substring(idstart,255); return unescape(awardid); } function EventRemove(clickedOn) { var awardid = GetIdFromClicked(clickedOn,'remove'); RemoveAward(awardid); } function EventEdit(clickedOn) { var awardid = GetIdFromClicked(clickedOn,'edit'); EditAward(awardid); } function EventSortOne(clickedOn,up) { var awardid; if (up) { awardid = GetIdFromClicked(clickedOn,'-sortup'); } else { awardid = GetIdFromClicked(clickedOn,'-sortdown'); } SortOne(awardid,up); } function EventCountShow(clickedOn) { var photoid = GetIdFromClicked(clickedOn, 'countshow'), theElement = GetDisplayElement(photoid); theElement = FindFirstElement(theElement, AwardInnerXPath); theElement.innerHTML = 'Retrieving comments, please wait...'; GetCommentsForPhotoId(photoid); } function EventCountAllShow() { glblAllPhotos = []; var PhotoDetails, theElement, PhotoId, allPhotoElements = document.evaluate( PoolAwardXPath, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (var i = 0; i < allPhotoElements.snapshotLength; i++) { theElement = allPhotoElements.snapshotItem(i); PhotoId = theElement.id.substring(theElement.id.lastIndexOf('-')+1,255); PhotoDetails = {}; PhotoDetails.PhotoId = PhotoId; PhotoDetails.Done = false; glblAllPhotos[i] = PhotoDetails; } theElement = document.getElementById('flickraward-awardcountall'); if (theElement) { theElement.innerHTML = 'Retrieving comments, please wait...'; } DisplayNextPhotoDetails(); } function EventCountHideAll() { ToggleAll(false) } function ToggleAll(Visible) { var theElement, PhotoId; var allPhotoElements = document.evaluate( PoolAwardXPath, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (var i = 0; i < allPhotoElements.snapshotLength; i++) { theElement = allPhotoElements.snapshotItem(i); PhotoId = theElement.id.substring(theElement.id.lastIndexOf('-')+1,255); ToggleDisplayAwards(PhotoId,Visible); } ToggleShowHideAll(Visible); } function EventCountReshowAll() { ToggleAll(true); } function EventClear() { var Ok = confirm("Do you really want to delete the awards you have set up??"); if (!Ok) { return; } GM_setValue('awards', ''); GM_setValue('awards-allow-dupes-from', ''); GM_setValue('lastcheckedversion', ''); Load(); ConfigDisplayAwards(); } function EventCountPositionAndShow(clickedOn) { var PhotoId = GetIdFromClicked(clickedOn, 'countpositionandshow'), theElement = GetDisplayElement(PhotoId); theElement = FindFirstElement(theElement,AwardInnerXPath); theElement.innerHTML = 'Retrieving comments, please wait...'; ToggleDisplayAwards(PhotoId, true); GetCommentsForPhotoId(PhotoId); } function EventCountHide(clickedOn) { clickedOn = unescape(clickedOn); var idstart = clickedOn.indexOf('counthide') + 10; var PhotoId = clickedOn.substring(idstart,255); ToggleDisplayAwards(PhotoId, false); } function EventCountReshow(clickedOn) { clickedOn = unescape(clickedOn); var idstart = clickedOn.indexOf('countreshow') + 12; var PhotoId = clickedOn.substring(idstart,255); ToggleDisplayAwards(PhotoId,true); } function EventPostAwards(event) { // handle post awards link click var thisElement = FindFirstElement(document, "//div[contains(concat(' ', normalize-space(@class), ' '), ' photo-list-view ')]"), checkboxes = [], photos = []; if (!thisElement) { return; } checkboxes = thisElement.getElementsByTagName('input'); checkboxes.forEach(function(box) { if (box.checked) { photos.push(box.id.replace(/[^\d]/g, '')); } }); if (photos.length) { ConfirmAwardPost(event, photos); } } // handle post awards link click function EventConfigPage() { // Do our config page stuff CreateConfigPage(); if (glblConfigAwards == undefined) { Load(); } ConfigDisplayAwards(); if (glblAllowDupesFrom) { var varElement = document.getElementById("AwardAllowDupesFrom"); varElement.value = glblAllowDupesFrom.join(';'); } } // Configure Event Handler function EndsWith(str, substr){ return (str.lastIndexOf(substr) == str.length - substr.length); } function ConfigureEvents() { document.addEventListener('click', function(event) { // event.target is the element that was clicked var clickedOn = event.target.toString(), target; if (clickedOn.indexOf('#flickrawardconfig-') > -1) { // flickrAwardCounter links if (EndsWith(clickedOn, 'save')) { EventSave(); } if (EndsWith(clickedOn, 'sort')) { EventSortAll(); } if (EndsWith(clickedOn, 'cancel')) { EventCancel(); } if (EndsWith(clickedOn, 'add')) { EventAdd(); } if (EndsWith(clickedOn, 'exportsettings')) { EventExportSettings(); } if (EndsWith(clickedOn, 'importsettings')) { EventImportSettings(); } if (EndsWith(clickedOn, 'configure')) { EventConfigPage(); } if (EndsWith(clickedOn, 'showcomments')) { ShowComments(); GM_setValue('displaytab', glblCommentsDisplayTab); } if (EndsWith(clickedOn, 'showawards')) { ShowAwards(); GM_setValue('displaytab', glblCommentsDisplayTab); } if (EndsWith(clickedOn, 'showboth')) { ShowBoth(); GM_setValue('displaytab', glblCommentsDisplayTab); } if (clickedOn.indexOf('-remove-') > 0) { EventRemove(clickedOn); } if (clickedOn.indexOf('-sortup-') > 0) { EventSortOne(clickedOn,true); } if (clickedOn.indexOf('-sortdown-') > 0) { EventSortOne(clickedOn,false); } if (clickedOn.indexOf('-edit-') > 0) { EventEdit(clickedOn); } if (clickedOn.indexOf('countshow') > 0) { EventCountShow(clickedOn); } if (clickedOn.indexOf('countallhide') > 0) { EventCountHideAll(clickedOn); } if (clickedOn.indexOf('countallreshow') > 0) { EventCountReshowAll(clickedOn); } if (clickedOn.indexOf('postawards') > 0) { EventPostAwards(event); } if (clickedOn.indexOf('counthide') > 0) { EventCountHide(clickedOn); } if (clickedOn.indexOf('countpositionandshow') > 0) { EventCountPositionAndShow(clickedOn); } if (clickedOn.indexOf('countreshow') > 0) { EventCountReshow(clickedOn); } if (clickedOn.indexOf('countallshow') > 0) { EventCountAllShow(); } if (clickedOn.indexOf('clear') > 0) { EventClear(); } // we handled the event so stop propagation event.stopPropagation(); event.preventDefault(); } else if (event.target.id && event.target.id.indexOf('flickrawardconfig-') > -1) { // other FAC elements if (EndsWith(event.target.id, 'faconly')) { glblFacOnly = event.target.checked; GM_setValue('faconly', glblFacOnly); ToggleFAC(event.target); } } else { // process click on Flickr interface elements target = (event.target.tagName.toLowerCase() == 'span' && event.target.parentNode) ? event.target.parentNode : event.target; if (target.tagName.toLowerCase() == 'a') { // click on a link if ('data-track' in target.attributes && (target.attributes['data-track'].value == 'prevPhotoButtonClick' || target.attributes['data-track'].value == 'nextPhotoButtonClick')) { // previous / next photo click in photo page setTimeout(ProcessFlickrPhotoPage, 1000); } else if (target.classList.contains('overlay')) { // click on photo in pool page glblMode = SinglePhotoMode; setTimeout(ProcessFlickrPhotoPage, 1000); } } } // process click on Flickr interface elements }, true); document.addEventListener('keyup', function(event) { // process left right arrow keys in photo page if (event.code == 'ArrowLeft' || event.code == 'ArrowRight') { if (glblMode == SinglePhotoMode) { setTimeout(ProcessFlickrPhotoPage, 1000); } } }, true); // process left right arrow keys in photo page } // API calls function CallFlickrMethod(method, params, onLoadFunction) { // Flickr API call params.format = 'json'; params.nojsoncallback = 1; params.method = method; var url = "https://api.flickr.com/services/rest?"; CallMethod(url, params, onLoadFunction); } // Flickr API call function CallMethod(url, params, onLoadFunction) { // http GET XHR wrapper var key; for(key in params) { url += "&" + key + "=" + params[key]; } GM_xmlhttpRequest({ method: "GET", url: url, headers: { "User-Agent": "flickrAwardCounter", "Accept": "application/json", }, onload: onLoadFunction }); } // http GET XHR wrapper function CallPostMethod(url, params, onLoadFunction) { // http POST XHR wrapper var key, data = ''; for (key in params) { data += key + "=" + params[key] + "&"; } GM_xmlhttpRequest({ method: 'POST', url: url, data: data, headers: { "User-Agent": "flickrAwardCounter", "Accept": "text/monkey,text/xml", "Content-Type": "application/x-www-form-urlencoded" }, onload: onLoadFunction }); } // http POST XHR wrapper function GetCommentsForPhotoId(PhotoId) { // Have we already cached the comments? if so skip api call if (glblLastPhotoId != PhotoId || glblCommentsText == undefined) { var params = {}, onLoadFunction = function(details) { ProcessComments(details.responseText); }; glblPhotoId = PhotoId; params.photo_id = PhotoId; params.api_key = glblApiKey; CallFlickrMethod('flickr.photos.comments.getList', params, onLoadFunction); } else { ProcessComments(glblCommentsText); } } function GetFavouritesForPhotoId(PhotoId) { var params = new Array(), onLoadFunction = function(details) { ProcessFavourites(details.responseText); }; params.photo_id = PhotoId; params.per_page = 1; params.api_key = glblApiKey; CallFlickrMethod('flickr.photos.getFavorites', params, onLoadFunction); } function GetGalleriesForPhotoId(PhotoId) { var params = new Array(), onLoadFunction = function(details) { ProcessGalleries(details.responseText,PhotoId); }; params.photo_id = PhotoId; params.per_page = 1; params.api_key = glblApiKey; CallFlickrMethod('flickr.galleries.getListForPhoto', params, onLoadFunction); } function includesConfiguredAward(intext) { // returns True if intext contains the url of a configured award var i, j; for (i = 0; i < glblConfigAwards.length; i++) { if (! glblConfigAwards[i].Url) { continue; } for (j = 0; j < glblConfigAwards[i].Url.length; j++) { if (intext.toLowerCase().indexOf(glblConfigAwards[i].Url[j].toLowerCase()) > -1) { return 1; } } } return 0; } // returns True if intext contains the url of a configured award function CountAwardsPresentInText(intext, awardtextarr, index = -1) { var result = 0, i = 0; for (i = 0; i < awardtextarr.length; i++) { // loop through award urls if (intext.toLowerCase().indexOf(awardtextarr[i].toLowerCase()) > -1) { result++; } } return result; } function inArray(arr, str) { for (var i=0; i 0) { cleanedUpComment = comment._content.trim().replace(/\s+/g, ' ').replace(' "', '"').replace(/([^>]) -1) { // already registered Award.Comments[j].count++; // one more break; } else if (Award.Comments[j].text.toLowerCase().indexOf(cleanedUpComment.toLowerCase()) > -1) { // already included Award.Comments[j].text = cleanedUpComment; Award.Comments[j].count++; // one more break; } } if (j >= Award.Comments.length) { // new comment Award.Comments.push({'text': cleanedUpComment, 'count': 1}); } } else { // first comment Award.Comments = []; Award.Comments.push({'text': cleanedUpComment, 'count': 1}); } whoAwarded = WhoAwardedAwards[i2]; dupesAllowed = AllowDupes(who); if (inArray(whoAwarded,who) && !dupesAllowed) { continue; } if (!dupesAllowed) { awardCount = 1; } AwardCounts[i2] = AwardCounts[i2] + awardCount; whoAwarded[whoAwarded.length] = who; glblConfigAwards[i2] = Award; // save to global array } } if (comment._content.indexOf(''; ToggleShowHideAll(true); } } function ToggleShowHideAll(Visible) { var theElement = document.getElementById('flickaward-showhideall'), buf = ''; if (theElement) { if (Visible) { buf = '( hide all awards )'; } else { buf = '( show all awards )'; } buf += (glblPostAwards) ? ' ( post awards )' : ''; buf += ''; theElement.innerHTML = buf; } } function GetAwardCounts() { var PhotoId = GetPhotoId(); GetCommentsForPhotoId(PhotoId); } function DisplaySeparatedComments(comments) { var i, comment = {}, buf = '', authorname = '', container = document.createElement('div'), commentsList = document.getElementsByClassName('comment-list'), commentsMore = document.getElementsByClassName('load-more-button'), addCommentSections = document.getElementsByClassName('add-comment-section'), addCommentSection = (addCommentSections) ? addCommentSections[0] : null, textarea = (addCommentSection) ? FindFirstElement(addCommentSection.parentElement, './/textarea[@class="comment-field"]') : null, button = (addCommentSection) ? FindFirstElement(addCommentSection.parentElement, './/button[@type="button"]') : null, html = ` comments awards both `, css = ` .comments-menu { display: block; padding: 0; margin: 10px 0 0 60px ! important; } .comments-menu a { display: inline-block; border-left: 1px solid #ccc; width: 7em; text-align: center; } .comments-menu a.active { color: black; } .comments-menu a.last { border-right: 1px solid #ccc; } .comments-menu a.active:hover { text-decoration: none ! important; } .styled-checkbox { margin-left: 10px; } .styled-checkbox + label { display: inline-block; margin-left: 5px; border-right: 1px solid #ccc; width: 6em; } .styled-checkbox:disabled + label { color: #ddd; } `, user = getUserId(); AddGlobalStyle(css); html = html.replace('**CHECKED**', (glblFacOnly) ? ' checked' : ''); if (commentsList.length == 0 || commentsList[0].tagName.toLowerCase() != 'ol') { console.log('Commments list not found.') return; } if (commentsMore.length > 0) { commentsMore[0].classList.add('noshow'); } if (glblReverseComments) { comments.slice().reverse().forEach(function(comment) { buf += RenderOneComment(comment, user); }); } else { comments.forEach(function(comment) { buf += RenderOneComment(comment, user); }); } commentsList[0].innerHTML = buf; container.id = 'togglecomments'; container.className = 'comments-menu'; container.innerHTML = html; if (! document.getElementById('togglecomments')) { commentsList[0].parentElement.insertBefore(container, commentsList[0]); } if (glblReverseComments && addCommentSection) { commentsList[0].parentElement.insertBefore(addCommentSection, commentsList[0]); /* if (button) {} button.addEventListener('click', function() { if (! textarea.value) { // abort if no comment return; } // abort if no comment setTimeout(function () { // delay insertion at the top of the list var ol = commentsList[0].parentElement; console.log(ol); if (ol) { ol.insertBefore(ol.lastElementChild, ol.firstChild); } }, 1000); // delay insertion at the top of the list }); } */ } switch(glblCommentsDisplayTab) { case 'awards': ShowAwards(); break; case 'both': ShowBoth(); break; default: ShowComments(); break; } CheckIcons(); CheckImages(); } function RenderOneComment(comment, userId = '') { var s = `
  • ==AUTHORNAME== ==ELAPSED==
    ==CONTENT==
  • `, authorname = (comment.realname) ? comment.realname : comment.authorname, pathalias = (comment.path_alias) ? comment.path_alias : comment.authorname, menutype = (comment.author == userId) ? ' data-menutype="owner"' : '', regexp = /\[(.+?\/\/.+?\/photos\/(.+?))\/*\]/g, matches = comment._content.matchAll(regexp), match, realname, label = comment.type, reply = '', edit = ''; for (match of matches) { realname = (match[2] in glblAuthors) ? glblAuthors[match[2]] : match[2]; comment._content = comment._content.replace(match[0], '' + realname + '') } if (comment.type == 'award') { label += ' noshow'; if (comment.fac) { label += ' fac'; } } comment._content = comment._content.replace(/\n/g, '
    '); s = s.replace(/==LABEL==/g, label); s = s.replace(/==DATAID==/g, comment.id); s = s.replace(/==SHORTID==/g, comment.id.replace(/.*-/, '')); s = s.replace(/==AUTHOR==/g, comment.author); s = s.replace(/==AUTHORNAME==/g, authorname); s = s.replace(/==ELAPSED==/g, elapsed(comment.datecreate)); s = s.replace(/==PATHALIAS==/g, pathalias); s = s.replace(/==MENUTYPE==/g, menutype); s = s.replace(/==PERMALINK==/g, comment.permalink); s = s.replace(/==CONTENT==/g, comment._content); return s; } function CheckIcons() { // substitute default buddy icon when loading fails var buddyIconLinks = document.evaluate( '//a[@data-track="commentBuddyIconClick"]', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null), img, src; for (var i = 0; i < buddyIconLinks.snapshotLength; i++) { img = buddyIconLinks.snapshotItem(i).firstElementChild; img.addEventListener('error', function handleError() { this.src = 'https://combo.staticflickr.com/pw/images/buddyicon05.png'; this.alt = 'default icon'; }); } } // substitute default buddy icon when loading fails function CheckImages() { // correct rendered award image sizes var commentsList = document.getElementsByClassName('comments'), awards = (commentsList[0] && commentsList[0].tagName.toLowerCase() == 'ul') ? commentsList[0].getElementsByTagName('img') : [], src = ''; for (var i = 0; i < awards.length; i++) { // loop through all image tags if (awards[i].parentElement && awards[i].parentElement.tagName.toLowerCase() == 'a' && awards[i].parentElement.getAttribute('data-track') == 'commentBuddyIconClick') { continue; } // skip user profile icons awards[i].idx = i; awards[i].addEventListener ('load', function() { // adjust dimensions on load this.setAttribute('width', this.width); this.setAttribute('height', this.height); return false; }, false); // adjust dimensions on load awards[i].addEventListener ('error', function(e) { // image load error handler console.log('#' + (this.idx + 1) + ': ' + this.width + '/' + this.height + ', ' + this.src); return false; }, false); // image load error handler src = (awards[i].src.indexOf('flickr.com') > -1) ? awards[i].src.replace('http://', 'https://') : awards[i].src; awards[i].src = src + '?fac=1'; } } // correct rendered award image sizes function ShowComments() { var menu = document.getElementById('togglecomments'), options = (menu) ? menu.getElementsByTagName('a') : [], comments = document.getElementsByClassName('real'), awards = document.getElementsByClassName('award'), faconly = document.getElementById('flickrawardconfig-faconly'), option, award, comment; for (option of options) { option.classList.remove('active'); if (option.href.indexOf('showcomments') > -1) { option.classList.add('active'); } } glblCommentsDisplayTab = 'comments'; for (award of awards) { award.classList.add('noshow'); } for (comment of comments) { comment.classList.remove('noshow'); } faconly.disabled = true; } function ShowAwards() { var menu = document.getElementById('togglecomments'), options = (menu) ? menu.getElementsByTagName('a') : [], comments = document.getElementsByClassName('real'), awards = document.getElementsByClassName('award'), faconly = document.getElementById('flickrawardconfig-faconly'), option, award, comment; for (option of options) { option.classList.remove('active'); if (option.href.indexOf('showawards') > -1) { option.classList.add('active'); } } glblCommentsDisplayTab = 'awards'; for (award of awards) { award.classList.remove('noshow'); } for (comment of comments) { comment.classList.add('noshow'); } faconly.disabled = false; ToggleFAC(faconly); } function ShowBoth() { var menu = document.getElementById('togglecomments'), options = (menu) ? menu.getElementsByTagName('a') : [], comments = document.getElementsByClassName('real'), awards = document.getElementsByClassName('award'), faconly = document.getElementById('flickrawardconfig-faconly'), option, award, comment; for (option of options) { option.classList.remove('active'); if (option.href.indexOf('showboth') > -1) { option.classList.add('active'); } } glblCommentsDisplayTab = 'both'; for (award of awards) { award.classList.remove('noshow'); } for (comment of comments) { comment.classList.remove('noshow'); } faconly.disabled = false; } function ToggleFAC(box) { var awards = document.getElementsByClassName('award'), award; for (award of awards) { if (box.checked) { if (award.classList.contains('fac')) { award.classList.remove('noshow'); } else { award.classList.add('noshow'); } } else { // box unchecked award.classList.remove('noshow'); } } } function randomInRange(min, max) { //returns random integer between min and max return Math.floor(Math.random() * (max - min + 1) + min); } //returns random integer between min and max function elapsed(d) { //returns number of years/months/weeks/days/hours/min/secs from now var now = new Date(), from = new Date(parseInt(d, 10) * 1000), // d is the number of seconds since the epoch as a string years = now.getFullYear() - from.getFullYear(), months = now.getMonth() - from.getMonth(), secs = Math.floor((now - from) / 1000), mins = Math.floor(secs / 60), hours = Math.floor(mins / 60), days = Math.floor(hours / 24), weeks = Math.floor(days / 7); months = (months < 0) ? 12 + months : months; if (years && weeks > 52) { return years + 'y'; } if (months && days >= 30) { return months + 'm'; } if (weeks) { return weeks + 'w'; } if (days) { return days + 'd'; } if (hours) { return hours + 'h'; } if (mins) { return mins + 'm'; } if (secs) { return secs + 's'; } return 'error'; } //returns number of years/months/weeks/days/hours/min/secs from now function ConfirmAwardPost(event, photos) { // display award post view var root = document.documentElement, cornerLeft, cornerTop, paneWidth = 820, paneHeight = 420; cornerTop = (event.clientY < paneHeight) ? event.clientY + 10 : event.clientY - (paneHeight + 10); cornerLeft = (root.clientWidth / 2) - (paneWidth / 2); cornerLeft = (cornerLeft < 10) ? 10 : cornerLeft; console.log('ConfirmAwardPost: ' + photos.length + ' top: ' + cornerTop + 'px / ' + event.clientY + ' left: ' + cornerLeft + 'px / ' + root.clientWidth); } // display award post view function getUserId() { // retrieves Flickr current user id from page var userElement = GetMatchingElementsFromDom('//div[@class="c-account-buddyicon"]/a/div'); if (userElement.snapshotLength == 1) { return(userElement.snapshotItem(0).style.backgroundImage.toString().replace(/.*#([^"]+)".*/, '$1')); } else { console.log('getUserId: user not found in page.'); return(''); } } // retrieves Flickr current user id from page function GetMatchingElementsFromDom(xpath) { return document.evaluate( xpath, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); } function GetPhotoId() { var Id = '', thisElement; // var allPhotoUrls = GetMatchingElementsFromDom(".//link[@id='image-src']/@href"); if (allPhotoUrls.snapshotLength === 0) { // old layout allPhotoUrls = GetMatchingElementsFromDom(".//div[@class='photoImgDiv']/img/@src"); } if (allPhotoUrls.snapshotLength === 0) { // new layout allPhotoUrls = GetMatchingElementsFromDom(".//div[@class='photo-div']/img/@src"); } if (allPhotoUrls.snapshotLength === 0) { // new layout 29/06/2014 allPhotoUrls = GetMatchingElementsFromDom(".//meta[@name='og:image']/@content"); } if (allPhotoUrls.snapshotLength === 0) { // new layout 22/04/2015 allPhotoUrls = GetMatchingElementsFromDom(".//img[@class='low-res-photo']/@src"); } for (var i = 0; i < allPhotoUrls.snapshotLength; i++) { thisElement = allPhotoUrls.snapshotItem(i); if (thisElement.value) { Id = GetImageId(thisElement.value); break; } } if (!Id) { // new layout 16/03/2022, try using location instead of document // eg. https://www.flickr.com/photos/marcbarrot/51941641266/in/dateposted-public/ Id = document.location.href.replace(/.*\/(\d+)\/.*/, "$1"); if (Id == document.location.href) { // eg. https://www.flickr.com/photos/marcbarrot/51941641266 Id = document.location.href.replace(/.*\/(\d+)$/, "$1"); } Id = (Id == document.location.href) ? '' : Id;// for consistency, return empty if cannot locate photo id } return Id; } function CreateAwardPane(pane, insertAfter) { var alreadyExists = document.getElementById('flickraward-awardcount'), newElement = document.createElement('p'), parent = pane.parentElement, next = pane.nextElementSibling, anchor = (insertAfter) ? next : pane, buf = AwardCounter + ConfigureLink + '
    Retrieving comments, please wait...
    ', css = ` .AwardsCountBox { border-bottom: 1px solid #ddd; padding-bottom: 1em; width: 100%;**COLUMNS** } `, columns = ` max-height: 15em; overflow: auto; columns: `; if (! alreadyExists && pane) { newElement.id = 'flickraward-awardcount'; newElement.className = 'AwardsPane' newElement.innerHTML = buf; css = css.replace('**COLUMNS**', (glblColumns > 0) ? (columns + glblColumns + ';') : ''); AddGlobalStyle(css); waitForElement('li.c-charm-item-location', 2000).then(function() { parent.insertBefore(newElement, anchor); GetAwardCounts(); }).catch(() => { console.log("map container element did not load"); parent.insertBefore(newElement, anchor); GetAwardCounts(); }); } } function GetDisplayElement(PhotoId) { if (glblMode == SinglePhotoMode) { return document.getElementById('flickraward-awardcount'); } else { var buf = 'flickraward-awardcount-' + PhotoId; return document.getElementById(buf); } } function DisplayError(PhotoId, errorstr) { var AwardDivOuter = GetDisplayElement(PhotoId); if (AwardDivOuter) { var AwardDivInner = FindFirstElement(AwardDivOuter,AwardInnerXPath); AwardDivInner.innerHTML = 'Error: ' + errorstr; if (glblMode != SinglePhotoMode) { ToggleDisplayAwards(PhotoId,true); } } } function ToggleDisplayAwards(PhotoId, Visible) { var Footer, buf = '', AwardDivToHide, AwardDivOuter = GetDisplayElement(PhotoId); if (AwardDivOuter) { Footer = FindFirstElement(AwardDivOuter, AwardFooterXPath); AwardDivToHide = FindFirstElement(AwardDivOuter, AwardToHideXPath); if (!Visible) { if (glblMode == DiscussMode) { buf += AwardCounter; } buf += GetCommentCountLink(PhotoId); Footer.innerHTML = buf; } else { Footer.innerHTML = ''; } if (Visible) { //AwardDivToHide.style.visibility = 'visible'; AwardDivToHide.style.display = 'inline'; AwardDivToHide.style.lineHeight = 'normal'; } else { //AwardDivToHide.style.visibility = 'hidden'; AwardDivToHide.style.display = 'none'; } } } function DisplayFavourites(favCount, PhotoId){ var AwardDivOuter = GetDisplayElement(PhotoId); if (AwardDivOuter) { var AwardDiv = FindFirstElement(AwardDivOuter,AwardInnerXPath); AwardDiv.innerHTML += '  ' + favCount + ' favourites
    '; } } function DisplayGalleries(galCount, PhotoId){ var AwardDivOuter = GetDisplayElement(PhotoId); if (AwardDivOuter) { var AwardDiv = FindFirstElement(AwardDivOuter,AwardInnerXPath); if ( ! AwardDiv.innerHTML.includes('galleries')) { AwardDiv.innerHTML += '  ' + galCount + ' galleries
    '; } } } function DisplayAwards(AwardCounts, CommentCount, PhotoId, realCount = 0) { var addedAward, AwardDiv, buf = '', Award, awardsCnt = 0, AwardDivOuter = GetDisplayElement(PhotoId), css = ` .AwardsCountBox { border-bottom: 1px solid #ddd; padding-bottom: 1em; width: 100%;**COLUMNS** } `, columns = ` max-height: 15em; overflow: auto; columns: `; for (var i = 0; i < AwardCounts.length; i++ ) { awardsCnt = awardsCnt + AwardCounts[i]; } if (AwardDivOuter) { css = css.replace('**COLUMNS**', (glblColumns > 0) ? (columns + glblColumns + ';') : ''); AddGlobalStyle(css); AwardDiv = FindFirstElement(AwardDivOuter,AwardInnerXPath); // Iterate over awards addedAward = false; for (var i = 0; i < glblConfigAwards.length; i++) { Award = glblConfigAwards[i]; if (Award != undefined) { // Stick our content into the page before comments if ((!glblHideZeroCount) || (AwardCounts[i] != 0)) { buf += '    ' + AwardCounts[i] + ' ' + Award.Name + '
    '; } addedAward = true; } } buf += '  ' + realCount + ' comments
    '; buf += '  ' + awardsCnt + ' / ' + (CommentCount - realCount) + ' awards
    '; if (!addedAward){ buf += 'No awards configured, please click configure to set some up
    '; } AwardDiv.innerHTML = buf; if (glblMode != SinglePhotoMode) { ToggleDisplayAwards(PhotoId, true); } } } function GetImageId(url) { url = url.substring(url.lastIndexOf('/') + 1,255); url = url.substring(0,url.indexOf('_')); return url; } function FindPhotoIdInElement(theElement) { var idAttr = theElement.attributes['data-photo-id'], elements, matches; if (idAttr) {//photo id is an attribute of the node return idAttr.value; } else { if (theElement.className && theElement.className == 'interaction-view' && theElement.firstElementChild && theElement.firstElementChild.firstElementChild && theElement.firstElementChild.firstElementChild.href) {// try new group pool page format //group pool page in new format, photo id is in the href attribute of the link as grand-child of the node return theElement.firstElementChild.firstElementChild.href.replace(/.*\/(\d+)\/.*/, "$1"); } } var thisElement, buf, query, items = [], realUrl, allImgs = document.evaluate( ".//img", theElement, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (var i = 0; i < allImgs.snapshotLength; i++) { thisElement = allImgs.snapshotItem(i); if (thisElement.src.match('^https?:\/\/(.*)(static\.?flickr|yimg)\.com\/(.*)\/(.*).jpg$')) { buf = GetImageId(thisElement.src); return buf; } if (thisElement.src.match('^https://ec.yimg.com/ec.*$')) { query = thisElement.src.split('?')[1].split('&'); for (var j = 0; j < query.length; j++) { items = query[j].split("="); if (items[0] == 'url') { realUrl = unescape(items[1]); buf = GetImageId(realUrl); return buf; } } } } return ''; } function FindGroupIdInLocation() { var id = location.href.replace(/.*?\/groups\/([\w@]+)\/.*/, "$1"); return (id != location.href) ? id : ''; } function GetCommentCountLink(ImageId) { if (glblMode == PoolMode) { return '( show awards )' + ((glblPostAwards) ? ' ' : ''); } else { return 'flickr Award Counter ( show awards ) '; } } function AddGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } function AddCommentCountLinks(xPath, into) { var context = (xPath.indexOf('message') != -1 && document.getElementsByClassName('replies')) ? document.getElementsByClassName('replies')[0] : document, allElements = document.evaluate( xPath, context, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null), ImageId, thisElement, newElement, buf; for (var i = 0; i < allElements.snapshotLength; i++) { thisElement = allElements.snapshotItem(i); if (thisElement.innerHTML.indexOf('flickraward-awardcount-') > -1) { continue; } ImageId = FindPhotoIdInElement(thisElement); if (ImageId != '') { newElement = document.createElement('div'); newElement.setAttribute('id','flickraward-awardcount-' + ImageId); newElement.setAttribute('style','z-index: 9000; margin-top: 8px; text-align:left; ! important'); newElement.setAttribute('class','flickraward'); buf = '' + GetCommentCountLink(ImageId); newElement.innerHTML = buf; //todo : change this to insert after poollist if (into) { thisElement.appendChild(newElement); } else { thisElement.parentNode.insertBefore(newElement, thisElement.nextSibling); } } } } function GetElements(node, xpath) { var allElements = document.evaluate( xpath, node, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); return allElements; } function AddJustifiedCommentCountLinks(xPath) { var allElements = GetElements(document, xPath), thisElement, newElement, buf, height, width, imageId, // groupId = FindGroupIdInLocation(), newPoolLayout = xPath.indexOf('interaction-view') != -1;//true if pool page is displayed in the new as opposed to classic layout for (var i = 0; i < allElements.snapshotLength; i++) { thisElement = allElements.snapshotItem(i); if ((thisElement.innerHTML.indexOf('flickraward-awardcount-') > -1) || (newPoolLayout && thisElement.parentElement.innerHTML.indexOf('flickraward-awardcount-') > -1)) { continue; } imageId = FindPhotoIdInElement(thisElement); if (imageId) { height = Math.floor(thisElement.clientHeight * 0.8); width = Math.floor(thisElement.clientWidth * 0.98); newElement = document.createElement('div'); newElement.setAttribute('id','flickraward-awardcount-' + imageId); newElement.setAttribute('style','position:absolute; background-color: #ffffff; opacity:0.65; left:5px; top:10px; max-height: ' + (height + 5) + 'px; padding: 0 5px; text-align:left; z-index:100; ! important'); newElement.setAttribute('class','flickraward'); buf = '
    ' + GetCommentCountLink(imageId); newElement.innerHTML = buf; if (newPoolLayout) { thisElement.parentElement.appendChild(newElement); } else { thisElement.appendChild(newElement); } } } } function ProcessFlickrPhotoPage() { var commentsHolders, discussPane = document.getElementById('DiscussPhoto'), // old layout insertAfter = false; if (!discussPane) { // new layout? discussPane = document.getElementById('meta'); } if (!discussPane) { // newer layout ? commentsHolders = document.getElementsByClassName('sub-photo-right-row1'); if (commentsHolders.length > 0) { discussPane = commentsHolders[0]; insertAfter = true; } } if (discussPane) { // we know where to display awards CreateAwardPane(discussPane, insertAfter); // Get the number of images on the page GetAwardCounts(); } else { console.error('ProcessFlickrPhotoPage: cannot locate awards pane insertion point.'); } } function ProcessFlickrGroupPage() { var thisElement = document.getElementById('DiscussTopic'),//classic format elements = []; if (!thisElement) {//new format elements = document.getElementsByClassName('replies'); thisElement = (elements) ? elements[0] : null; } if (thisElement) { CreateCountAllDiv(thisElement); if (elements.length) { // new group format setTimeout(function () { AddCommentCountLinks(".//div[@class='message']", true); }, 3000); } else { // classic group format (deprecated) AddCommentCountLinks("//td[@class='Said']", true); } } } function FindFirstElement(root, xPath) { var allElements = document.evaluate( xPath, root, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); var thisElement = null; if (allElements.snapshotLength > 0) { thisElement = allElements.snapshotItem(0); } return thisElement; } function CreatePoolViewErrorDiv(Parent){ if (Parent) { var newElement = document.createElement('div'); newElement.setAttribute('id','flickraward-errordiv'); var buf = AwardCounter + ' ' + ConfigureLink + ' ( Cannot show awards in justified view, please change to a thumbnail view )'; newElement.innerHTML = buf; Parent.parentNode.insertBefore(newElement, Parent); } } function CreateCountAllDiv(Parent) { var newElement = document.createElement('div'), buf; if (Parent) { newElement.setAttribute('id','flickraward-awardcountall'); buf = AwardCounter + ' ' + ConfigureLink + ' ( show all awards )'; buf += (glblPostAwards) ? ' ( post awards )' : ''; buf += ''; newElement.innerHTML = buf; Parent.parentNode.insertBefore(newElement, Parent); } } function ProcessFlickrPoolPage() { AddGlobalStyle('.AwardCount { font-size: 11px; padding: 0; text-align: left; ! important; }'); AddGlobalStyle('.photo-display-item { background-color: #fff !important; }'); var thisElement = FindFirstElement(document, "//div[@id='pool-photos']"); //deprecated Classic group page if (!thisElement) { thisElement = FindFirstElement(document, "//div[contains(concat(' ', normalize-space(@class), ' '), ' photo-list-view ')]"); } if (thisElement) { CreateCountAllDiv(thisElement); } var varElement = document.getElementById("options-thumb"); //deprecated Classic group page if (varElement && varElement.innerHTML.indexOf("Justified") > -1) { //deprecated Classic group page in justified view setInterval (function() { AddJustifiedCommentCountLinks("//div[contains(@class,'pool-photo photo-display-item') and not(div[class='flickraward'])]"); }, 3000); } else if (varElement) { // //deprecated Classic group page in non justified view setInterval (function() { AddCommentCountLinks("//div[contains(@class,'pool-photo photo-display-item') and not(div[class='flickraward'])]",true); }, 3000); } else { //assume New group page in justified view setInterval (function() { AddJustifiedCommentCountLinks("//div[contains(@class,'interaction-view')]"); }, 3000); } } function RemoveTags(theString) { theString = theString.replace('<', ''); theString = theString.replace('>', ''); return theString; } function ConvertTags(theString) { theString = theString.replace('<', '<'); theString = theString.replace('>', '>'); return theString; } function DateDiffDays(date1, date2) { var one_day = 1000 * 60 * 60 * 24; return Math.ceil((date1.getTime() - date2.getTime()) / one_day); } function ProcessUpdateInfo(updateInfo) { try { var obj = eval('(' + updateInfo + ')'); if (obj.error) { alert('Update check error: ' + obj.error); } else { glblServerVersion = obj.version; console.log(glblServerVersion + '/' + glblVersion); } glblLastCheckedVersion = new Date(); SaveUpdateInfo(); } catch (e) { GM_log("error processing updateinfo: " + e + " - updateInfo=\"" + updateInfo + "\""); } } function CheckForUpdates() { var onLoadFunction = function(details) { ProcessUpdateInfo(details.responseText); } if (!glblUpdateCheck) { return; } var currentDate = new Date(); if ((glblLastCheckedVersion != undefined) && (DateDiffDays(currentDate, glblLastCheckedVersion) < 2)) { return; } CallMethod(glblScriptVersionUrl, [], onLoadFunction); } // Main script function Main() { GM_registerMenuCommand("Configure flickrAwardCounter",EventConfigPage); GM_registerMenuCommand("Clear flickrAwardCounter config",EventClear); AddGlobalStyle('.AwardCounterButton:link, .AwardCounterButton:visited { padding: 2px 4px 2px 4px; margin: 0px; text-decoration: none; text-align: center; border: 1px solid; border-color: #aaa #000 #000 #aaa; background: #BBBBBB !important; }'); AddGlobalStyle('.AwardCounterButtonSmall:link, .AwardCounterButtonSmall:visited { padding: 2px 4px 2px 4px; margin: 0px; text-decoration: none; width: 10px; text-align: center; border: 1px solid; border-color: #aaa #000 #000 #aaa; background: #BBBBBB !important; }'); AddGlobalStyle('.AwardCounterButton:hover, .AwardCounterButtonSmall:hover { border-color: #000 #aaa #aaa #000 !important; }'); AddGlobalStyle('.AwardCount { text-align: left !important; }'); AddGlobalStyle('.noshow { display: none !important; }'); AddGlobalStyle('.comments-menu { margin: 10px 0 0 60px; }'); if (glblConfigAwards == undefined) { Load(); } ConfigureEvents(); if (document.location.href.match('^https?:\/\/(.*)\/groups\/(.*)\/discuss(.*)$')) { // this is a group discussion page glblMode = DiscussMode; ProcessFlickrGroupPage(); } else if (document.location.href.match('^https?:\/\/(.*)\/groups\/(.*)\/pool(.*)$')) { // this is a group pool page glblMode = PoolMode; ProcessFlickrPoolPage(); } else { // this is a photo page glblMode = SinglePhotoMode; ProcessFlickrPhotoPage(); } CheckForUpdates(); } Main();