Random order ads
This commit is contained in:
parent
710b55ea6c
commit
725d250910
|
@ -2,8 +2,11 @@
|
||||||
<modal :action="`Ads for ${conversation.name}`" @submit="submit" ref="dialog" @open="load()" dialogClass="w-100"
|
<modal :action="`Ads for ${conversation.name}`" @submit="submit" ref="dialog" @open="load()" dialogClass="w-100"
|
||||||
:buttonText="l('conversationSettings.save')">
|
:buttonText="l('conversationSettings.save')">
|
||||||
|
|
||||||
<div>
|
<div class="form-group">
|
||||||
[] Randomize the order of the ads every time you start automated posting.
|
<label class="control-label" for="randomOrder">
|
||||||
|
<input type="checkbox" v-model="randomOrder" id="randomOrder" />
|
||||||
|
Serve ads in random order
|
||||||
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group ad-list" v-for="(ad, index) in ads">
|
<div class="form-group ad-list" v-for="(ad, index) in ads">
|
||||||
|
@ -39,12 +42,14 @@
|
||||||
l = l;
|
l = l;
|
||||||
setting = Conversation.Setting;
|
setting = Conversation.Setting;
|
||||||
ads!: string[];
|
ads!: string[];
|
||||||
|
randomOrder! = false;
|
||||||
core = core;
|
core = core;
|
||||||
|
|
||||||
load(): void {
|
load(): void {
|
||||||
const settings = this.conversation.settings;
|
const settings = this.conversation.settings;
|
||||||
|
|
||||||
this.ads = settings.adSettings.ads.slice(0);
|
this.ads = settings.adSettings.ads.slice(0);
|
||||||
|
this.randomOrder = !!settings.adSettings.randomOrder;
|
||||||
|
|
||||||
if (this.ads.length === 0) {
|
if (this.ads.length === 0) {
|
||||||
this.ads.push('');
|
this.ads.push('');
|
||||||
|
@ -53,13 +58,11 @@
|
||||||
|
|
||||||
submit(): void {
|
submit(): void {
|
||||||
this.conversation.settings = {
|
this.conversation.settings = {
|
||||||
notify: this.conversation.settings.notify,
|
...this.conversation.settings,
|
||||||
highlight: this.conversation.settings.highlight,
|
|
||||||
highlightWords: this.conversation.settings.highlightWords,
|
|
||||||
joinMessages: this.conversation.settings.joinMessages,
|
|
||||||
defaultHighlights: this.conversation.settings.defaultHighlights,
|
|
||||||
adSettings: {
|
adSettings: {
|
||||||
ads: this.ads.map((ad: string) => ad.trim()).filter((ad: string) => (ad.length > 0))
|
ads: this.ads.map((ad: string) => ad.trim()).filter((ad: string) => (ad.length > 0)),
|
||||||
|
randomOrder: this.randomOrder
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,6 +37,7 @@ export class AdManager {
|
||||||
private expireDue?: Date;
|
private expireDue?: Date;
|
||||||
private firstPost?: Date;
|
private firstPost?: Date;
|
||||||
private interval?: Timer;
|
private interval?: Timer;
|
||||||
|
private adMap: number[] = [];
|
||||||
|
|
||||||
constructor(conversation: Conversation) {
|
constructor(conversation: Conversation) {
|
||||||
this.conversation = conversation;
|
this.conversation = conversation;
|
||||||
|
@ -46,13 +47,11 @@ export class AdManager {
|
||||||
return this.active;
|
return this.active;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// tslint:disable-next-line
|
// tslint:disable-next-line
|
||||||
private async delay(ms: number): Promise<void> {
|
private async delay(ms: number): Promise<void> {
|
||||||
return new Promise((resolve) => setTimeout(resolve, ms));
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// This makes sure there is a 5s delay between channel posts
|
// This makes sure there is a 5s delay between channel posts
|
||||||
private async sendAdToChannel(msg: string, conv: Conversation.ChannelConversation): Promise<void> {
|
private async sendAdToChannel(msg: string, conv: Conversation.ChannelConversation): Promise<void> {
|
||||||
const initTime = Date.now();
|
const initTime = Date.now();
|
||||||
|
@ -86,7 +85,6 @@ export class AdManager {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private async sendNextPost(): Promise<void> {
|
private async sendNextPost(): Promise<void> {
|
||||||
const msg = this.getNextAd();
|
const msg = this.getNextAd();
|
||||||
|
|
||||||
|
@ -116,6 +114,17 @@ export class AdManager {
|
||||||
) as Timer;
|
) as Timer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
generateAdMap(): number[] {
|
||||||
|
const ads = this.getAds();
|
||||||
|
const idx = _.range(ads.length);
|
||||||
|
|
||||||
|
return this.shouldUseRandomOrder() ? _.shuffle(idx) : idx;
|
||||||
|
}
|
||||||
|
|
||||||
|
shouldUseRandomOrder(): boolean {
|
||||||
|
return !!this.conversation.settings.adSettings.randomOrder;
|
||||||
|
}
|
||||||
|
|
||||||
getAds(): string[] {
|
getAds(): string[] {
|
||||||
return this.conversation.settings.adSettings.ads;
|
return this.conversation.settings.adSettings.ads;
|
||||||
}
|
}
|
||||||
|
@ -126,7 +135,12 @@ export class AdManager {
|
||||||
if (ads.length === 0)
|
if (ads.length === 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
return ads[this.adIndex % ads.length];
|
if (ads.length !== this.adMap.length) {
|
||||||
|
log.debug('adManager.regenerate.on-the-fly', ads.length, this.adMap.length);
|
||||||
|
this.adMap = this.generateAdMap();
|
||||||
|
}
|
||||||
|
|
||||||
|
return ads[this.adMap[this.adIndex % this.adMap.length] % ads.length];
|
||||||
}
|
}
|
||||||
|
|
||||||
getNextPostDue(): Date | undefined {
|
getNextPostDue(): Date | undefined {
|
||||||
|
@ -149,6 +163,7 @@ export class AdManager {
|
||||||
this.active = true;
|
this.active = true;
|
||||||
this.nextPostDue = new Date(Date.now() + initialWait);
|
this.nextPostDue = new Date(Date.now() + initialWait);
|
||||||
this.expireDue = new Date(Date.now() + AdManager.POSTING_PERIOD);
|
this.expireDue = new Date(Date.now() + AdManager.POSTING_PERIOD);
|
||||||
|
this.adMap = this.generateAdMap();
|
||||||
|
|
||||||
// tslint:disable-next-line: no-unnecessary-type-assertion
|
// tslint:disable-next-line: no-unnecessary-type-assertion
|
||||||
this.interval = setTimeout(
|
this.interval = setTimeout(
|
||||||
|
|
|
@ -58,6 +58,7 @@ export class Settings implements ISettings {
|
||||||
|
|
||||||
export class AdSettings implements Conversation.AdSettings {
|
export class AdSettings implements Conversation.AdSettings {
|
||||||
ads: string[] = [];
|
ads: string[] = [];
|
||||||
|
randomOrder = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -67,7 +68,7 @@ export class ConversationSettings implements Conversation.Settings {
|
||||||
highlightWords: string[] = [];
|
highlightWords: string[] = [];
|
||||||
joinMessages = Conversation.Setting.Default;
|
joinMessages = Conversation.Setting.Default;
|
||||||
defaultHighlights = true;
|
defaultHighlights = true;
|
||||||
adSettings: Conversation.AdSettings = { ads: [] };
|
adSettings: Conversation.AdSettings = { ads: [], randomOrder: false };
|
||||||
}
|
}
|
||||||
|
|
||||||
function pad(num: number): string | number {
|
function pad(num: number): string | number {
|
||||||
|
|
|
@ -108,6 +108,7 @@ export namespace Conversation {
|
||||||
|
|
||||||
export interface AdSettings {
|
export interface AdSettings {
|
||||||
readonly ads: string[];
|
readonly ads: string[];
|
||||||
|
readonly randomOrder: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const enum UnreadState { None, Unread, Mention }
|
export const enum UnreadState { None, Unread, Mention }
|
||||||
|
|
|
@ -25,10 +25,10 @@ export class ImageUrlMutator {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected init(): void {
|
protected init(): void {
|
||||||
this.add(
|
// this.add(
|
||||||
/^https?:\/\/.*twitter.com/,
|
// /^https?:\/\/.*twitter.com/,
|
||||||
async(): Promise<string> => 'https://i.imgur.com/ScNLbsp.png'
|
// async(): Promise<string> => 'https://i.imgur.com/ScNLbsp.png'
|
||||||
);
|
// );
|
||||||
|
|
||||||
this.add(
|
this.add(
|
||||||
/^https?:\/\/(www.)?pornhub.com\/view_video.php\?viewkey=([a-z0-9A-Z]+)/,
|
/^https?:\/\/(www.)?pornhub.com\/view_video.php\?viewkey=([a-z0-9A-Z]+)/,
|
||||||
|
|
Loading…
Reference in New Issue