2022-03-06 13:52:19 -05:00
|
|
|
import { scheduleOnce } from "@ember/runloop";
|
2022-06-01 12:37:01 -04:00
|
|
|
import { htmlSafe } from "@ember/template";
|
2023-11-07 12:07:33 -05:00
|
|
|
import RSVP from "rsvp";
|
|
|
|
import loadScript from "discourse/lib/load-script";
|
|
|
|
import { isTesting } from "discourse-common/config/environment";
|
2023-11-07 16:12:30 -05:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2023-11-07 12:07:33 -05:00
|
|
|
import AdComponent from "discourse/plugins/discourse-adplugin/discourse/components/ad-component";
|
2016-12-05 13:31:11 -05:00
|
|
|
|
2019-04-16 11:57:16 -04:00
|
|
|
let _loaded = false,
|
2018-10-22 14:49:32 -04:00
|
|
|
_promise = null,
|
2021-09-21 14:27:10 -04:00
|
|
|
renderCounts = {};
|
2015-08-25 00:30:23 -04:00
|
|
|
|
2017-05-29 18:00:38 -04:00
|
|
|
function parseAdWidth(value) {
|
2018-10-22 14:49:32 -04:00
|
|
|
if (value === "responsive") {
|
|
|
|
return "auto";
|
|
|
|
}
|
2020-08-21 09:53:34 -04:00
|
|
|
if (value.startsWith("fluid")) {
|
|
|
|
return "fluid";
|
|
|
|
}
|
2019-11-18 10:07:55 -05:00
|
|
|
const w = parseInt(value.substring(0, 3).trim(), 10);
|
2019-09-10 17:01:01 -04:00
|
|
|
if (isNaN(w)) {
|
|
|
|
return "auto";
|
|
|
|
} else {
|
|
|
|
return `${w}px`;
|
|
|
|
}
|
2015-08-25 00:30:23 -04:00
|
|
|
}
|
|
|
|
|
2017-05-29 18:00:38 -04:00
|
|
|
function parseAdHeight(value) {
|
2018-10-22 14:49:32 -04:00
|
|
|
if (value === "responsive") {
|
|
|
|
return "auto";
|
|
|
|
}
|
2020-08-21 09:53:34 -04:00
|
|
|
if (value.startsWith("fluid")) {
|
|
|
|
return "fluid";
|
|
|
|
}
|
2019-11-18 10:07:55 -05:00
|
|
|
const h = parseInt(value.substring(4, 7).trim(), 10);
|
2019-09-10 17:01:01 -04:00
|
|
|
if (isNaN(h)) {
|
|
|
|
return "auto";
|
|
|
|
} else {
|
|
|
|
return `${h}px`;
|
|
|
|
}
|
2015-08-25 00:30:23 -04:00
|
|
|
}
|
|
|
|
|
2016-12-05 13:31:11 -05:00
|
|
|
function loadAdsense() {
|
|
|
|
if (_loaded) {
|
2022-03-06 13:52:19 -05:00
|
|
|
return RSVP.resolve();
|
2015-09-02 01:23:17 -04:00
|
|
|
}
|
2015-09-03 20:51:44 -04:00
|
|
|
|
2016-12-05 13:31:11 -05:00
|
|
|
if (_promise) {
|
|
|
|
return _promise;
|
|
|
|
}
|
2016-02-22 12:11:29 -05:00
|
|
|
|
2019-04-16 11:57:16 -04:00
|
|
|
const adsenseSrc =
|
2018-10-22 14:49:32 -04:00
|
|
|
("https:" === document.location.protocol ? "https:" : "http:") +
|
|
|
|
"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js";
|
2020-09-04 07:24:14 -04:00
|
|
|
_promise = loadScript(adsenseSrc, { scriptTag: true }).then(function () {
|
2016-12-05 13:31:11 -05:00
|
|
|
_loaded = true;
|
|
|
|
});
|
2016-02-22 12:11:29 -05:00
|
|
|
|
2016-12-05 13:31:11 -05:00
|
|
|
return _promise;
|
2016-02-22 12:11:29 -05:00
|
|
|
}
|
2015-08-25 00:30:23 -04:00
|
|
|
|
2019-07-08 15:10:25 -04:00
|
|
|
const DESKTOP_SETTINGS = {
|
|
|
|
"topic-list-top": {
|
|
|
|
code: "adsense_topic_list_top_code",
|
2020-09-04 07:24:14 -04:00
|
|
|
sizes: "adsense_topic_list_top_ad_sizes",
|
2019-07-08 15:10:25 -04:00
|
|
|
},
|
|
|
|
"topic-above-post-stream": {
|
|
|
|
code: "adsense_topic_above_post_stream_code",
|
2020-09-04 07:24:14 -04:00
|
|
|
sizes: "adsense_topic_above_post_stream_ad_sizes",
|
2019-07-08 15:10:25 -04:00
|
|
|
},
|
|
|
|
"topic-above-suggested": {
|
|
|
|
code: "adsense_topic_above_suggested_code",
|
2020-09-04 07:24:14 -04:00
|
|
|
sizes: "adsense_topic_above_suggested_ad_sizes",
|
2019-07-08 15:10:25 -04:00
|
|
|
},
|
|
|
|
"post-bottom": {
|
|
|
|
code: "adsense_post_bottom_code",
|
2020-09-04 07:24:14 -04:00
|
|
|
sizes: "adsense_post_bottom_ad_sizes",
|
|
|
|
},
|
2016-02-19 15:06:13 -05:00
|
|
|
};
|
2015-08-25 00:30:23 -04:00
|
|
|
|
2019-07-08 15:10:25 -04:00
|
|
|
const MOBILE_SETTINGS = {
|
|
|
|
"topic-list-top": {
|
|
|
|
code: "adsense_mobile_topic_list_top_code",
|
2020-09-04 07:24:14 -04:00
|
|
|
sizes: "adsense_mobile_topic_list_top_ad_size",
|
2019-07-08 15:10:25 -04:00
|
|
|
},
|
|
|
|
"topic-above-post-stream": {
|
|
|
|
code: "adsense_mobile_topic_above_post_stream_code",
|
2020-09-04 07:24:14 -04:00
|
|
|
sizes: "adsense_mobile_topic_above_post_stream_ad_size",
|
2019-07-08 15:10:25 -04:00
|
|
|
},
|
|
|
|
"topic-above-suggested": {
|
|
|
|
code: "adsense_mobile_topic_above_suggested_code",
|
2020-09-04 07:24:14 -04:00
|
|
|
sizes: "adsense_mobile_topic_above_suggested_ad_size",
|
2019-07-08 15:10:25 -04:00
|
|
|
},
|
|
|
|
"post-bottom": {
|
|
|
|
code: "adsense_mobile_post_bottom_code",
|
2020-09-04 07:24:14 -04:00
|
|
|
sizes: "adsense_mobile_post_bottom_ad_size",
|
|
|
|
},
|
2019-07-08 15:10:25 -04:00
|
|
|
};
|
2015-08-25 00:30:23 -04:00
|
|
|
|
2019-04-18 14:10:56 -04:00
|
|
|
export default AdComponent.extend({
|
2018-10-22 14:49:32 -04:00
|
|
|
classNameBindings: [
|
|
|
|
":google-adsense",
|
|
|
|
"classForSlot",
|
2020-09-04 07:24:14 -04:00
|
|
|
"isResponsive:adsense-responsive",
|
2018-10-22 14:49:32 -04:00
|
|
|
],
|
2015-08-25 00:30:23 -04:00
|
|
|
loadedGoogletag: false,
|
|
|
|
|
2021-09-21 14:27:10 -04:00
|
|
|
publisher_id: null,
|
2017-05-29 18:00:38 -04:00
|
|
|
ad_width: null,
|
|
|
|
ad_height: null,
|
2015-08-28 01:34:14 -04:00
|
|
|
|
2017-05-29 18:00:38 -04:00
|
|
|
adRequested: false,
|
|
|
|
|
2016-11-08 16:46:09 -05:00
|
|
|
init() {
|
2019-07-08 15:10:25 -04:00
|
|
|
let config, size;
|
|
|
|
const placement = this.get("placement");
|
|
|
|
|
|
|
|
if (this.site.mobileView) {
|
|
|
|
config = MOBILE_SETTINGS[placement];
|
|
|
|
} else {
|
|
|
|
config = DESKTOP_SETTINGS[placement];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!renderCounts[placement]) {
|
|
|
|
renderCounts[placement] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const sizes = (this.siteSettings[config.sizes] || "").split("|");
|
|
|
|
|
2019-07-08 15:18:34 -04:00
|
|
|
if (sizes.length === 1) {
|
2019-07-08 15:10:25 -04:00
|
|
|
size = sizes[0];
|
|
|
|
} else {
|
|
|
|
size = sizes[renderCounts[placement] % sizes.length];
|
|
|
|
renderCounts[placement] += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.set("ad_width", parseAdWidth(size));
|
|
|
|
this.set("ad_height", parseAdHeight(size));
|
|
|
|
this.set("ad_code", this.siteSettings[config.code]);
|
2021-09-21 14:27:10 -04:00
|
|
|
this.set("publisher_id", this.siteSettings.adsense_publisher_code);
|
2015-08-27 22:21:40 -04:00
|
|
|
this._super();
|
|
|
|
},
|
2016-02-19 15:06:13 -05:00
|
|
|
|
2023-11-07 18:44:39 -05:00
|
|
|
async _triggerAds() {
|
2022-03-06 13:52:19 -05:00
|
|
|
if (isTesting()) {
|
2020-01-06 12:01:40 -05:00
|
|
|
return; // Don't load external JS during tests
|
|
|
|
}
|
|
|
|
|
2018-10-22 14:49:32 -04:00
|
|
|
this.set("adRequested", true);
|
2023-11-07 18:44:39 -05:00
|
|
|
|
|
|
|
await loadAdsense();
|
|
|
|
|
|
|
|
if (this.isDestroyed || this.isDestroying) {
|
|
|
|
// Component removed from DOM before script loaded
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const adsbygoogle = (window.adsbygoogle ||= []);
|
|
|
|
adsbygoogle.push({}); // ask AdSense to fill one ad unit
|
|
|
|
} catch (ex) {
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
console.error("Adsense error:", ex);
|
|
|
|
}
|
2016-11-08 16:46:09 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
didInsertElement() {
|
|
|
|
this._super();
|
2016-11-09 16:46:09 -05:00
|
|
|
|
2018-10-22 14:49:32 -04:00
|
|
|
if (!this.get("showAd")) {
|
|
|
|
return;
|
|
|
|
}
|
2016-11-21 15:55:03 -05:00
|
|
|
|
2022-03-06 13:52:19 -05:00
|
|
|
scheduleOnce("afterRender", this, this._triggerAds);
|
2016-11-08 16:46:09 -05:00
|
|
|
},
|
|
|
|
|
2020-03-23 04:40:29 -04:00
|
|
|
@discourseComputed("ad_width")
|
2019-04-18 14:10:56 -04:00
|
|
|
isResponsive(adWidth) {
|
2020-08-21 09:53:34 -04:00
|
|
|
return ["auto", "fluid"].includes(adWidth);
|
|
|
|
},
|
|
|
|
|
|
|
|
@discourseComputed("ad_width")
|
|
|
|
isFluid(adWidth) {
|
|
|
|
return adWidth === "fluid";
|
2019-04-16 11:57:16 -04:00
|
|
|
},
|
2017-05-29 18:00:38 -04:00
|
|
|
|
2020-03-23 04:40:29 -04:00
|
|
|
@discourseComputed("placement", "showAd")
|
2019-04-18 14:10:56 -04:00
|
|
|
classForSlot(placement, showAd) {
|
2022-06-01 12:37:01 -04:00
|
|
|
return showAd ? htmlSafe(`adsense-${placement}`) : "";
|
2019-04-16 11:57:16 -04:00
|
|
|
},
|
2017-05-29 18:00:38 -04:00
|
|
|
|
2020-08-21 10:24:12 -04:00
|
|
|
@discourseComputed("isResponsive", "isFluid")
|
|
|
|
autoAdFormat(isResponsive, isFluid) {
|
2022-06-01 12:37:01 -04:00
|
|
|
return isResponsive ? htmlSafe(isFluid ? "fluid" : "auto") : false;
|
2019-04-16 11:57:16 -04:00
|
|
|
},
|
2017-05-29 18:00:38 -04:00
|
|
|
|
2020-03-23 04:40:29 -04:00
|
|
|
@discourseComputed("ad_width", "ad_height", "isResponsive")
|
2019-04-18 14:10:56 -04:00
|
|
|
adWrapperStyle(w, h, isResponsive) {
|
2022-06-01 12:37:01 -04:00
|
|
|
return htmlSafe(isResponsive ? "" : `width: ${w}; height: ${h};`);
|
2019-04-16 11:57:16 -04:00
|
|
|
},
|
2015-08-25 00:30:23 -04:00
|
|
|
|
2020-03-23 04:40:29 -04:00
|
|
|
@discourseComputed("adWrapperStyle", "isResponsive")
|
2019-04-18 14:10:56 -04:00
|
|
|
adInsStyle(adWrapperStyle, isResponsive) {
|
2022-06-01 12:37:01 -04:00
|
|
|
return htmlSafe(
|
|
|
|
`display: ${isResponsive ? "block" : "inline-block"}; ${adWrapperStyle}`
|
|
|
|
);
|
2019-04-16 11:57:16 -04:00
|
|
|
},
|
2015-08-25 00:30:23 -04:00
|
|
|
|
2024-01-31 13:04:24 -05:00
|
|
|
@discourseComputed
|
2024-02-08 21:42:40 -05:00
|
|
|
showAdsenseAds() {
|
2024-01-31 13:04:24 -05:00
|
|
|
if (!this.currentUser) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.currentUser.show_adsense_ads;
|
2019-04-16 11:57:16 -04:00
|
|
|
},
|
2016-11-21 15:55:03 -05:00
|
|
|
|
2020-03-23 04:40:29 -04:00
|
|
|
@discourseComputed(
|
2021-09-21 14:27:10 -04:00
|
|
|
"publisher_id",
|
2024-02-08 21:42:40 -05:00
|
|
|
"showAdsenseAds",
|
2019-06-05 15:52:52 -04:00
|
|
|
"showToGroups",
|
|
|
|
"showAfterPost",
|
|
|
|
"showOnCurrentPage"
|
|
|
|
)
|
2021-09-21 14:27:10 -04:00
|
|
|
showAd(
|
|
|
|
publisherId,
|
2024-02-08 21:42:40 -05:00
|
|
|
showAdsenseAds,
|
2021-09-21 14:27:10 -04:00
|
|
|
showToGroups,
|
|
|
|
showAfterPost,
|
|
|
|
showOnCurrentPage
|
|
|
|
) {
|
2019-04-18 14:10:56 -04:00
|
|
|
return (
|
2021-09-21 14:27:10 -04:00
|
|
|
publisherId &&
|
2024-02-08 21:42:40 -05:00
|
|
|
showAdsenseAds &&
|
2019-04-18 14:10:56 -04:00
|
|
|
showToGroups &&
|
2019-06-05 15:52:52 -04:00
|
|
|
showAfterPost &&
|
|
|
|
showOnCurrentPage
|
2019-04-18 14:10:56 -04:00
|
|
|
);
|
2019-04-18 17:52:59 -04:00
|
|
|
},
|
|
|
|
|
2020-03-23 04:40:29 -04:00
|
|
|
@discourseComputed("postNumber")
|
2019-04-18 17:52:59 -04:00
|
|
|
showAfterPost(postNumber) {
|
|
|
|
if (!postNumber) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-11-18 10:07:55 -05:00
|
|
|
return this.isNthPost(
|
|
|
|
parseInt(this.siteSettings.adsense_nth_post_code, 10)
|
|
|
|
);
|
2020-09-04 07:24:14 -04:00
|
|
|
},
|
2015-12-24 04:50:22 -05:00
|
|
|
});
|