Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Seeding Alliance Bid Adapter: change bidder URL and add versioning #8298

Merged
merged 26 commits into from
Apr 19, 2022
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7281e54
add seedingAlliance Adapter
sag-jonhil Dec 17, 2019
4612570
Merge pull request #1 from prebid/master
Jan 24, 2020
043b2a0
add two native default params
sag-jonhil Feb 11, 2020
bd9a1cd
...
sag-jonhil Feb 11, 2020
bfe4fdf
...
sag-jonhil Feb 11, 2020
4e6e34a
Merge pull request #2 from prebid/master
Feb 11, 2020
1771978
seedingAlliance Adapter: add two more default native params
sag-jonhil Feb 11, 2020
a193ea7
Merge branch 'seedingAlliance' of https://github.com/SeedingAllianceT…
sag-jonhil Feb 11, 2020
39feec3
Merge pull request #3 from prebid/master
Jul 20, 2020
4036c82
Merge branch 'master' into seedingAlliance
sag-jonhil Jul 20, 2020
717c487
updating seedingAlliance Adapter
sag-jonhil Jul 20, 2020
d7840c3
Merge pull request #4 from prebid/master
Sep 15, 2021
351a503
fix for merge
sag-jonhil Sep 15, 2021
29dd4db
Merge pull request #6 from prebid/master
Sep 16, 2021
c77748b
Merge branch 'master' into seedingAlliance
sag-jonhil Sep 16, 2021
26eaa2b
seedingAlliance Adapter
sag-jonhil Sep 16, 2021
5dd6c15
Merge pull request #7 from prebid/master
Jan 7, 2022
85072ca
Merge branch 'seedingAlliance' into master
Jan 7, 2022
bb4d1b0
Merge pull request #8 from SeedingAllianceTech/master
Jan 7, 2022
94d9903
quickfix no bids + net revenue
sag-jonhil Jan 7, 2022
097defa
Merge pull request #9 from prebid/master
Apr 5, 2022
993d60c
Merge branch 'master' into seedingAlliance
sag-jonhil Apr 5, 2022
ab915a0
bugfix replace auction price
sag-jonhil Apr 5, 2022
df192cc
Merge pull request #10 from prebid/master
Apr 19, 2022
1ea4f03
Merge branch 'master' into seedingAlliance
sag-jonhil Apr 19, 2022
4fb76aa
change URL and add versioning
sag-jonhil Apr 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions modules/seedingAllianceBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { config } from '../src/config.js';

const BIDDER_CODE = 'seedingAlliance';
const DEFAULT_CUR = 'EUR';
const ENDPOINT_URL = 'https://b.nativendo.de/cds/rtb/bid?format=openrtb2.5&ssp=nativendo';
const ENDPOINT_URL = 'https://b.nativendo.de/cds/rtb/bid?format=openrtb2.5&ssp=pb';

const NATIVE_ASSET_IDS = {0: 'title', 1: 'body', 2: 'sponsoredBy', 3: 'image', 4: 'cta', 5: 'icon'};

Expand Down Expand Up @@ -124,7 +124,8 @@ export const spec = {
user: {},
regs: {
ext: {
gdpr: 0
gdpr: 0,
pb_ver: '$prebid.version$'
}
}
};
Expand Down Expand Up @@ -187,20 +188,23 @@ registerBidder(spec);
function parseNative(bid) {
const {assets, link, imptrackers} = bid.adm.native;

let clickUrl = link.url.replace(/\$\{AUCTION_PRICE\}/g, bid.price);

if (link.clicktrackers) {
link.clicktrackers.forEach(function (clicktracker, index) {
link.clicktrackers[index] = clicktracker.replace(/\$\{AUCTION_PRICE\}/g, bid.price);
});
}

if (imptrackers) {
imptrackers.forEach(function (imptracker, index) {
imptrackers[index] = imptracker.replace(/\$\{AUCTION_PRICE\}/g, bid.price);
});
}

const result = {
url: link.url,
clickUrl: link.url,
url: clickUrl,
clickUrl: clickUrl,
clickTrackers: link.clicktrackers || undefined,
impressionTrackers: imptrackers || undefined
};
Expand Down