/* global $: true */ /* global waitForKeyElements: true */ /* global GM_xmlhttpRequest: true */ /* global GM_getValue: true */ // ==UserScript== // @name Geocaching.com + Project-GC // @namespace PGC // @description Adds links and data to Geocaching.com to make it collaborate with PGC // @include http://www.geocaching.com/* // @include https://www.geocaching.com/* // @version 1.1.1 // @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js // @require https://greasyfork.org/scripts/5392-waitforkeyelements/code/WaitForKeyElements.js?version=19641 // @grant GM_xmlhttpRequest // @grant GM_setValue // @grant GM_getValue // @downloadURL none // ==/UserScript== 'use strict'; (function() { var pgcUrl = 'http://project-gc.com/', pgcApiUrl = pgcUrl + 'api/gm/v1/', externalLinkIcon = 'http://maxcdn.project-gc.com/images/external_small.png', loggedIn = GM_getValue('loggedIn'), subscription = GM_getValue('subscription'), pgcUsername = GM_getValue('pgcUsername'), gccomUsername = GM_getValue('gccomUsername'), latestLogs = [], path = window.location.pathname; // Don't run the script for iframes if (window.top == window.self) { Main(); } /** * Router */ function Main() { CheckPGCLogin(); if (path.match(/^\/geocache\/.*/) !== null) { CachePage(); } else if (path.match(/^\/seek\/cache_logbook\.aspx.*/) !== null) { Logbook(); } } /** * Check that we are logged in at PGC, and that it's with the same username */ function CheckPGCLogin() { gccomUsername = $('#ctl00_divSignedIn .li-user-info span').html(); GM_setValue('gccomUsername', gccomUsername); GM_xmlhttpRequest({ method: "GET", url: pgcApiUrl + 'GetMyUsername', onload: function(response) { var result = JSON.parse(response.responseText), html, loggedInContent, subscriptionContent = ''; if (result.status !== 'OK') { alert(response.responseText); return false; } pgcUsername = result.data.username; loggedIn = !!result.data.loggedIn; subscription = !!result.data.subscription; if (loggedIn === false) { loggedInContent = 'Not logged in'; } else if (pgcUsername == gccomUsername) { loggedInContent = '' + pgcUsername + ''; } else { loggedInContent = '' + pgcUsername + ''; } if (subscription) { subscriptionContent = 'Premium'; } html = '\ \ Logo\ \ \ ' + loggedInContent + '\ ' + subscriptionContent + '\ \ '; if ($('#ctl00_divSignedIn ul')) { $('#ctl00_divSignedIn ul').prepend('
  • ' + html + '
  • '); } else { $('#ctl00_divNotSignedIn').append('
    ' + html + '
    '); // FIXME - Not working } // Save the login value GM_setValue('loggedIn', loggedIn); GM_setValue('subscription', subscription); GM_setValue('pgcUsername', pgcUsername); }, onerror: function(response) { alert(response); return false; } }); } /** * getGcCodeFromPage * @return string */ function getGcCodeFromPage() { return $('#ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoCode').html(); } /** * addToVGPS */ function addToVGPS() { var gccode = GM_getValue('gccode'), listId = $('#comboVGPS').val(), msg, url = pgcApiUrl + 'AddToVGPSList?listId=' + listId + '&gccode=' + gccode + '§ionName=GM-script'; GM_xmlhttpRequest({ method: "GET", url: url, onload: function(response) { var result = JSON.parse(response.responseText); msg = 'Geocache not added to Virtual-GPS :('; if (result.status === 'OK') { msg = 'Geocache added to Virtual-GPS!'; } alert(msg); return true; }, onerror: function(response) { console.log(response); return false; } }); } /** * CachePage */ function CachePage() { var gccode = getGcCodeFromPage(), cacheOwnerDiv = $('#ctl00_ContentBody_mcd1'), placedBy = $('#ctl00_ContentBody_mcd1 a').html() ; GM_setValue('gccode', gccode); // Append links to Profile Stats for every geocacher who has logged the cache as well cacheOwnerDiv.append(''); // Though this is ajax, so we need some magic waitForKeyElements('#cache_logs_table tr', CachePage_Logbook); // Get cache data from PGC if (GM_getValue('subscription')) { GM_xmlhttpRequest({ method: "GET", url: pgcApiUrl + 'GetCacheDataFromGccode?gccode=' + encodeURIComponent(gccode), onload: function(response) { var result = JSON.parse(response.responseText), cacheData = result.data.cacheData, challengeCheckerTagIds = result.data.challengeCheckerTagIds, location = [], fp = 0, fpp = 0, fpw = 0; // Add FP/FP%/FPW below the current FP if (result.status === 'OK' && cacheData !== false) { fp = parseInt(+cacheData.favorite_points, 10), fpp = parseInt(+cacheData.favorite_points_pct, 10), fpw = parseInt(+cacheData.favorite_points_wilson, 10); // Add PGC location if (cacheData.country.length > 0) { location.push(cacheData.country); } if (cacheData.region.length > 0) { location.push(cacheData.region); } if (cacheData.county.length > 0) { location.push(cacheData.county); } location = location.join(' / '); $('#ctl00_ContentBody_Location').html('' + location + ''); } $('#ctl00_divContentMain div.span-17 div.span-6.right.last div.favorite.right').append('

    (' + fp + ' FP, ' + fpp + '%, ' + fpw + 'W)

    '); // Add challenge checkers if(challengeCheckerTagIds.length > 0) { var html = ''; html += '
    '; for(var i = 0 ; i < challengeCheckerTagIds.length ; i++) { html += 'PGC Checker'; } html += '
    '; $('#ctl00_ContentBody_CacheInformationTable').append(html) } } }); } // Make it easier to copy the gccode $('#ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoLinkPanel'). html('

    ' + gccode + '

    ' + '
    '); // Remove the UTM coordinates // $('#ctl00_ContentBody_CacheInformationTable div.LocationData div.span-9 p.NoBottomSpacing br').remove(); $('#ctl00_ContentBody_LocationSubPanel').html(); // Remove ads // PGC can't really do this officially // $('#ctl00_ContentBody_uxBanManWidget').remove(); // Remove disclaimer // PGC can't really do this officially // $('#ctl00_divContentMain div.span-17 div.Note.Disclaimer').remove(); // Remove the useless "Geocache Description" $('h3.CacheDescriptionHeader').remove(); // Hide download links $('

    Print and Downloads

    ').insertAfter('#ctl00_ContentBody_CacheInformationTable div.LocationData'); $('#ctl00_divContentMain div.DownloadLinks').hide(); // Turn the coordinates into an address var coordinates = $('#ctl00_ContentBody_lnkConversions').attr('href'), latitude = coordinates.replace(/.*lat=([^&]*)&lon=.*/, "$1"), longitude = coordinates.replace(/.*&lon=([^&]*)&.*/, "$1"), url = 'http://maps.googleapis.com/maps/api/geocode/json?latlng=' + latitude + ',' + longitude + '&sensor=false'; GM_xmlhttpRequest({ method: "GET", url: url, onload: function(response) { var result = JSON.parse(response.responseText); if (result.status !== 'OK') { return false; } var formattedAddress = result.results[0].formatted_address; $('#ctl00_ContentBody_LocationSubPanel').html(formattedAddress + '
    '); } }); // Add number of finds to the top // $('#ctl00_ContentBody_lblFindCounts').find('img').each(function() { // if($(this).attr('src') == '/images/logtypes/2.png') { // Found // } // }); $('#cacheDetails').append('
    ' + $('#ctl00_ContentBody_lblFindCounts').html() + '
    '); // Add link to PGC gallery if (subscription) { var html = ' '; $('.CacheDetailNavigation ul li:first').append(html); } var gccomUsername = GM_getValue('gccomUsername'), mapUrl = pgcUrl + 'Maps/mapcompare/?profile_name=' + gccomUsername + '&nonefound=on&ownfound=on&location=' + latitude + ',' + longitude + '&max_distance=5&submit=Filter'; $('#ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoLinkPanel').append( ' Project-GC Map'); $('#ctl00_ContentBody_CoordInfoLinkControl1_uxCoordInfoLinkPanel').append( '(incl found)'); GM_xmlhttpRequest({ method: "GET", url: pgcApiUrl + 'GetExistingVGPSLists', onload: function(response) { var result = JSON.parse(response.responseText), vgpsLists = result.data.lists, selected = result.data.selected, selectedContent, html = '
  • Add to V-GPS
    ', listId, list; html += ''; html += ' '; html += '
  • '; $('div.CacheDetailNavigation ul:first').append(html); $('#btnaddToVGPS').click(function(event) { event.preventDefault(); addToVGPS(); }); } }); } function CachePage_Logbook(jNode) { // Add Profile stats link after each user var profileNameElm = $(jNode).find('p.logOwnerProfileName strong a'); var profileName = profileNameElm.html(); if (typeof profileName !== 'undefined') { profileName = profileNameElm.append(''); } // Save to latest logs if (latestLogs.length < 5) { var logType = $(jNode).find('div.LogType strong img').attr('src'); if (logType == '/images/logtypes/3.png') { // dnf latestLogs.push(''); } else if (logType == '/images/logtypes/2.png') { // found latestLogs.push(''); } // Show them if (latestLogs.length == 5) { var images = latestLogs.join(''); // $('#ctl00_ContentBody_diffTerr').append('
    Latest logs:
    ' + images + '
    '); $('#ctl00_ContentBody_size p').addClass('NoBottomSpacing'); $('#ctl00_ContentBody_size').append('

    Latest logs: ' + images + '

    '); } } } function Logbook() { waitForKeyElements('#AllLogs tr', CachePage_Logbook); } // Not used? // function Logbook_Logbook(jNode) { // CachePage_Logbook(jNode); // } }());