File: /var/www/html/shootinschool/wp-content/plugins/wp-google-maps/js/v8/google-api-error-handler.js
/**
* @namespace WPGMZA
* @module GoogleAPIErrorHandler
* @requires WPGMZA
*/
jQuery(function($) {
/**
* This class catches Google Maps API errors and presents them in a friendly manner, before sending them on to the consoles default error handler.
* @class WPGMZA.GoogleAPIErrorHandler
* @constructor WPGMZA.GoogleAPIErrorHandler
* @memberof WPGMZA
*/
WPGMZA.GoogleAPIErrorHandler = function() {
var self = this;
// Don't do anything if Google isn't the selected API
if(WPGMZA.settings.engine != "google-maps")
return;
// Only allow on the map edit page, or front end if user has administrator role
if(!(WPGMZA.currentPage == "map-edit" || (WPGMZA.is_admin == 0 && WPGMZA.userCanAdministrator == 1)))
return;
this.element = $(WPGMZA.html.googleMapsAPIErrorDialog);
if(WPGMZA.is_admin == 1)
this.element.find(".wpgmza-front-end-only").remove();
this.errorMessageList = this.element.find(".wpgmza-google-api-error-list");
this.templateListItem = this.element.find("li.template").remove();
this.messagesAlreadyDisplayed = {};
//if(WPGMZA.settings.developer_mode)
//return;
// Override error function
var _error = console.error;
console.error = function(message)
{
self.onErrorMessage(message);
_error.apply(this, arguments);
}
// Check for no API key
if(
WPGMZA.settings.engine == "google-maps"
&&
(!WPGMZA.settings.wpgmza_google_maps_api_key || !WPGMZA.settings.wpgmza_google_maps_api_key.length)
&&
WPGMZA.getCurrentPage() != WPGMZA.PAGE_MAP_EDIT
)
this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key, ["https://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/"]);
}
/**
* Overrides console.error to scan the error message for Google Maps API error messages.
* @method
* @memberof WPGMZA.GoogleAPIErrorHandler
* @param {string} message The error message passed to the console
*/
WPGMZA.GoogleAPIErrorHandler.prototype.onErrorMessage = function(message)
{
var m;
var regexURL = /http(s)?:\/\/[^\s]+/gm;
if(!message)
return;
if((m = message.match(/You have exceeded your (daily )?request quota for this API/)) || (m = message.match(/This API project is not authorized to use this API/)) || (m = message.match(/^Geocoding Service: .+/)))
{
var urls = message.match(regexURL);
this.addErrorMessage(m[0], urls);
}
else if(m = message.match(/^Google Maps.+error: (.+)\s+(http(s?):\/\/.+)/m))
{
this.addErrorMessage(m[1].replace(/([A-Z])/g, " $1"), [m[2]]);
}
}
/**
* Called by onErrorMessage when a Google Maps API error is picked up, this will add the specified message to the Maps API error message dialog, along with URLs to compliment it. This function ignores duplicate error messages.
* @method
* @memberof WPGMZA.GoogleAPIErrorHandler
* @param {string} message The message, or part of the message, intercepted from the console
* @param {array} [urls] An array of URLs relating to the error message to compliment the message.
*/
WPGMZA.GoogleAPIErrorHandler.prototype.addErrorMessage = function(message, urls)
{
var self = this;
if(this.messagesAlreadyDisplayed[message])
return;
var li = this.templateListItem.clone();
$(li).find(".wpgmza-message").html(message);
var buttonContainer = $(li).find(".wpgmza-documentation-buttons");
var buttonTemplate = $(li).find(".wpgmza-documentation-buttons>a");
buttonTemplate.remove();
if(urls && urls.length)
{
for(var i = 0; i < urls.length; i++)
{
var url = urls[i];
var button = buttonTemplate.clone();
var icon = "fa-external-link";
var text = WPGMZA.localized_strings.documentation;
button.attr("href", urls[i]);
/*if(url.match(/google.+documentation/))
{
// icon = "fa-google";
icon = "fa-wrench"
}
else if(url.match(/maps-no-account/))
{
icon = "fa-wrench"
text = WPGMZA.localized_strings.verify_project;
}
else if(url.match(/console\.developers\.google/))
{
icon = "fa-wrench";
text = WPGMZA.localized_strings.api_dashboard;
}*/
$(button).find("i").addClass(icon);
$(button).append(text);
}
buttonContainer.append(button);
}
$(this.errorMessageList).append(li);
/*if(!this.dialog)
this.dialog = $(this.element).remodal();
switch(this.dialog.getState())
{
case "open":
case "opened":
case "opening":
break;
default:
this.dialog.open();
break;
}*/
$("#wpgmza_map, .wpgmza_map").each(function(index, el) {
var container = $(el).find(".wpgmza-google-maps-api-error-overlay");
if(container.length == 0)
{
container = $("<div class='wpgmza-google-maps-api-error-overlay'></div>");
container.html(self.element.html());
}
setTimeout(function() {
$(el).append(container);
}, 1000);
});
$(".gm-err-container").parent().css({"z-index": 1});
this.messagesAlreadyDisplayed[message] = true;
}
WPGMZA.googleAPIErrorHandler = new WPGMZA.GoogleAPIErrorHandler();
});