discourse-adplugin/assets/javascripts/discourse/components/google-dfp-ad.js.es6

393 lines
9.8 KiB
Plaintext
Raw Normal View History

import AdComponent from "discourse/plugins/discourse-adplugin/discourse/components/ad-component";
import {
default as computed,
on
} from "ember-addons/ember-computed-decorators";
2018-10-22 14:49:32 -04:00
import loadScript from "discourse/lib/load-script";
let _loaded = false,
2018-10-22 14:49:32 -04:00
_promise = null,
ads = {},
nextSlotNum = 1,
renderCounts = {};
function getNextSlotNum() {
return nextSlotNum++;
}
2015-08-10 00:04:21 -04:00
function splitWidthInt(value) {
2018-10-22 14:49:32 -04:00
var str = value.substring(0, 3);
return str.trim();
2015-08-10 00:04:21 -04:00
}
function splitHeightInt(value) {
2018-10-22 14:49:32 -04:00
var str = value.substring(4, 7);
return str.trim();
2015-08-10 00:04:21 -04:00
}
2015-08-26 01:35:30 -04:00
// This creates an array for the values of the custom targeting key
function valueParse(value) {
let final = value.replace(/ /g, "");
2018-10-22 14:49:32 -04:00
final = final.replace(/['"]+/g, "");
final = final.split(",");
2015-08-26 01:35:30 -04:00
return final;
}
// This creates an array for the key of the custom targeting key
function keyParse(word) {
let key = word;
2018-10-22 14:49:32 -04:00
key = key.replace(/['"]+/g, "");
key = key.split("\n");
return key;
}
// This should call adslot.setTargeting(key for that location, value for that location)
function custom_targeting(key_array, value_array, adSlot) {
for (var i = 0; i < key_array.length; i++) {
if (key_array[i]) {
2019-06-14 13:24:55 -04:00
adSlot.setTargeting(key_array[i], valueParse(value_array[i]));
}
}
}
const DESKTOP_SETTINGS = {
"topic-list-top": {
code: "dfp_topic_list_top_code",
sizes: "dfp_topic_list_top_ad_sizes",
targeting_keys: "dfp_target_topic_list_top_key_code",
targeting_values: "dfp_target_topic_list_top_value_code"
},
"topic-above-post-stream": {
code: "dfp_topic_above_post_stream_code",
sizes: "dfp_topic_above_post_stream_ad_sizes",
targeting_keys: "dfp_target_topic_above_post_stream_key_code",
targeting_values: "dfp_target_topic_above_post_stream_value_code"
},
"topic-above-suggested": {
code: "dfp_topic_above_suggested_code",
sizes: "dfp_topic_above_suggested_ad_sizes",
targeting_keys: "dfp_target_topic_above_suggested_key_code",
targeting_values: "dfp_target_topic_above_suggested_value_code"
},
"post-bottom": {
code: "dfp_post_bottom_code",
sizes: "dfp_post_bottom_ad_sizes",
targeting_keys: "dfp_target_post_bottom_key_code",
targeting_values: "dfp_target_post_bottom_value_code"
}
};
const MOBILE_SETTINGS = {
"topic-list-top": {
code: "dfp_mobile_topic_list_top_code",
sizes: "dfp_mobile_topic_list_top_ad_sizes",
targeting_keys: "dfp_target_topic_list_top_key_code",
targeting_values: "dfp_target_topic_list_top_value_code"
},
"topic-above-post-stream": {
code: "dfp_mobile_topic_above_post_stream_code",
sizes: "dfp_mobile_topic_above_post_stream_ad_sizes",
targeting_keys: "dfp_target_topic_above_post_stream_key_code",
targeting_values: "dfp_target_topic_above_post_stream_value_code"
},
"topic-above-suggested": {
code: "dfp_mobile_topic_above_suggested_code",
sizes: "dfp_mobile_topic_above_suggested_ad_sizes",
targeting_keys: "dfp_target_topic_above_suggested_key_code",
targeting_values: "dfp_target_topic_above_suggested_value_code"
},
"post-bottom": {
code: "dfp_mobile_post_bottom_code",
sizes: "dfp_mobile_post_bottom_ad_sizes",
targeting_keys: "dfp_target_post_bottom_key_code",
targeting_values: "dfp_target_post_bottom_value_code"
}
};
function getWidthAndHeight(placement, settings, isMobile) {
let config, size;
if (isMobile) {
config = MOBILE_SETTINGS[placement];
} else {
config = DESKTOP_SETTINGS[placement];
}
if (!renderCounts[placement]) {
renderCounts[placement] = 0;
}
const sizes = (settings[config.sizes] || "").split("|");
2019-07-08 15:18:34 -04:00
if (sizes.length === 1) {
size = sizes[0];
} else {
size = sizes[renderCounts[placement] % sizes.length];
renderCounts[placement] += 1;
}
return {
width: parseInt(splitWidthInt(size)),
height: parseInt(splitHeightInt(size))
};
}
function defineSlot(divId, placement, settings, isMobile, categoryTarget) {
if (!settings.dfp_publisher_id) {
return;
}
if (ads[divId]) {
return ads[divId];
}
let ad, config, publisherId;
let size = getWidthAndHeight(placement, settings, isMobile);
if (isMobile) {
publisherId = settings.dfp_publisher_id_mobile || settings.dfp_publisher_id;
config = MOBILE_SETTINGS[placement];
} else {
publisherId = settings.dfp_publisher_id;
config = DESKTOP_SETTINGS[placement];
}
2019-06-14 13:24:55 -04:00
ad = window.googletag.defineSlot(
"/" + publisherId + "/" + settings[config.code],
2019-06-14 13:24:55 -04:00
[size.width, size.height],
divId
);
custom_targeting(
keyParse(settings[config.targeting_keys]),
keyParse(settings[config.targeting_values]),
ad
);
if (categoryTarget) {
ad.setTargeting("discourse-category", categoryTarget);
}
ad.addService(window.googletag.pubads());
ads[divId] = { ad: ad, width: size.width, height: size.height };
return ads[divId];
}
function destroySlot(divId) {
if (ads[divId] && window.googletag) {
window.googletag.destroySlots([ads[divId].ad]);
delete ads[divId];
}
}
2016-02-22 12:11:29 -05:00
function loadGoogle() {
/**
* Refer to this article for help:
* https://support.google.com/admanager/answer/4578089?hl=en
*/
if (_loaded) {
return Ember.RSVP.resolve();
}
if (_promise) {
return _promise;
}
// The boilerplate code
2018-10-22 14:49:32 -04:00
var dfpSrc =
("https:" === document.location.protocol ? "https:" : "http:") +
"//www.googletagservices.com/tag/js/gpt.js";
_promise = loadScript(dfpSrc, { scriptTag: true }).then(function() {
_loaded = true;
if (window.googletag === undefined) {
2019-06-14 12:10:11 -04:00
// eslint-disable-next-line no-console
2018-10-22 14:49:32 -04:00
console.log("googletag is undefined!");
}
2016-02-22 12:11:29 -05:00
window.googletag.cmd.push(function() {
// Infinite scroll requires SRA:
2016-02-22 12:11:29 -05:00
window.googletag.pubads().enableSingleRequest();
// we always use refresh() to fetch the ads:
window.googletag.pubads().disableInitialLoad();
2016-02-22 12:11:29 -05:00
window.googletag.enableServices();
});
});
2019-06-14 13:24:55 -04:00
window.googletag = window.googletag || { cmd: [] };
return _promise;
}
export default AdComponent.extend({
2018-10-22 14:49:32 -04:00
classNameBindings: ["adUnitClass"],
classNames: ["google-dfp-ad"],
loadedGoogletag: false,
refreshOnChange: null,
lastAdRefresh: null,
@computed(
"siteSettings.dfp_publisher_id",
"siteSettings.dfp_publisher_id_mobile",
"site.mobileView"
)
publisherId(globalId, mobileId, isMobile) {
if (isMobile) {
return mobileId || globalId;
} else {
return globalId;
}
},
@computed("placement", "postNumber")
divId(placement, postNumber) {
let slotNum = getNextSlotNum();
if (postNumber) {
return `div-gpt-ad-${slotNum}-${placement}-${postNumber}`;
} else {
return `div-gpt-ad-${slotNum}-${placement}`;
}
},
@computed("placement", "showAd")
adUnitClass(placement, showAd) {
return showAd ? `dfp-ad-${placement}` : "";
},
@computed("width", "height")
adWrapperStyle(w, h) {
return `width: ${w}px; height: ${h}px;`.htmlSafe();
},
@computed("width")
adTitleStyleMobile(w) {
return `width: ${w}px;`.htmlSafe();
},
@computed(
"publisherId",
"showToTrustLevel",
"showToGroups",
"showAfterPost",
"showOnCurrentPage"
)
showAd(
publisherId,
showToTrustLevel,
showToGroups,
showAfterPost,
showOnCurrentPage
) {
2018-10-22 14:49:32 -04:00
return (
publisherId &&
showToTrustLevel &&
showToGroups &&
showAfterPost &&
showOnCurrentPage
2018-10-22 14:49:32 -04:00
);
},
@computed("currentUser.trust_level")
showToTrustLevel(trustLevel) {
2018-10-22 14:49:32 -04:00
return !(
trustLevel && trustLevel > this.siteSettings.dfp_through_trust_level
2018-10-22 14:49:32 -04:00
);
},
@computed("postNumber")
showAfterPost(postNumber) {
if (!postNumber) {
return true;
}
return this.isNthPost(parseInt(this.siteSettings.dfp_nth_post_code));
},
// 3 second delay between calls to refresh ads in a component.
// Ember often calls updated() more than once, and *sometimes*
// updated() is called after _initGoogleDFP().
shouldRefreshAd() {
const lastAdRefresh = this.get("lastAdRefresh");
if (!lastAdRefresh) {
return true;
}
return new Date() - lastAdRefresh > 3000;
},
@on("didUpdate")
updated() {
if (this.get("listLoading") || !this.shouldRefreshAd()) {
return;
}
let slot = ads[this.get("divId")];
2018-10-22 14:49:32 -04:00
if (!(slot && slot.ad)) {
return;
}
let ad = slot.ad,
categorySlug = this.get("currentCategorySlug");
if (this.get("loadedGoogletag")) {
// console.log(`refresh(${this.get("divId")}) from updated()`);
this.set("lastAdRefresh", new Date());
window.googletag.cmd.push(() => {
ad.setTargeting("discourse-category", categorySlug || "0");
2016-02-22 12:11:29 -05:00
window.googletag.pubads().refresh([ad]);
});
}
},
@on("didInsertElement")
_initGoogleDFP() {
2018-10-22 14:49:32 -04:00
if (!this.get("showAd")) {
return;
}
loadGoogle(this.siteSettings).then(() => {
this.set("loadedGoogletag", true);
this.set("lastAdRefresh", new Date());
window.googletag.cmd.push(() => {
let slot = defineSlot(
this.get("divId"),
this.get("placement"),
this.siteSettings,
this.site.mobileView,
this.get("currentCategorySlug") || "0"
);
if (slot && slot.ad) {
// Display has to be called before refresh
// and after the slot div is in the page.
window.googletag.display(this.get("divId"));
// console.log(`refresh(${this.get("divId")}) from _initGoogleDFP()`);
window.googletag.pubads().refresh([slot.ad]);
}
});
});
},
willRender() {
this._super(...arguments);
if (!this.get("showAd")) {
return;
}
let size = getWidthAndHeight(
this.get("placement"),
this.siteSettings,
this.site.mobileView
);
this.set("width", size.width);
this.set("height", size.height);
},
@on("willDestroyElement")
cleanup() {
2018-10-22 14:49:32 -04:00
destroySlot(this.get("divId"));
}
});