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

sspBC Bid Adapter: update video detection for VAST4 #10660

Merged
merged 46 commits into from
Oct 30, 2023
Merged
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
1a37b62
Merge pull request #1 from prebid/master
wojciech-bialy-wpm Aug 18, 2020
5a90ba4
Update tests for sspBC adapter
wojciech-bialy-wpm Nov 16, 2020
2183a85
Merge pull request #9 from prebid/master
wojciech-bialy-wpm May 20, 2021
767334b
Merge pull request #11 from prebid/master
wojciech-bialy-wpm Jun 1, 2021
97d7ccf
Merge pull request #13 from prebid/master
wojciech-bialy-wpm Jul 29, 2021
8856c36
Merge pull request #15 from prebid/master
wojciech-bialy-wpm Sep 21, 2021
754df70
Merge pull request #16 from prebid/master
wojciech-bialy-wpm Oct 7, 2021
273e7db
[sspbc-adapter] 5.3 updates: content-type for notifications
Oct 8, 2021
08c90fb
[sspbc-adapter] pass CTA to native bid
Oct 14, 2021
363d342
[sspbc-5.3] keep pbsize for detected adunits
Oct 14, 2021
9f9cc49
[maintenance] - remove old test for sspBc bid adaptor
Oct 14, 2021
22b2afc
[sspbc-5.3] increment adaptor ver
Oct 14, 2021
62dad10
[sspbc-adapter] maintenance update to sspBCBidAdapter
Oct 14, 2021
65a7738
remove yarn.lock
Oct 14, 2021
d224072
Merge pull request #17 from prebid/master
wojciech-bialy-wpm Oct 14, 2021
cf9f3e0
Delete package-lock.json
wojciech-bialy-wpm Oct 25, 2021
1721574
remove package-lock.jsonfrom pull request
Oct 25, 2021
ee21d84
update sspbc-5.3 branch
Oct 25, 2021
170fdcd
Merge branch 'master' of https://github.com/prebid/Prebid.js into ssp…
Oct 25, 2021
26ca477
[sspbc-adapter] send pageViewId in request
Oct 25, 2021
2a8278b
[sspbc-adapter] update pageViewId test
Oct 25, 2021
14ac217
Merge pull request #19 from prebid/master
wojciech-bialy-wpm Nov 16, 2021
6d5bbd3
[sspbc-adapter] add viewabiility tracker to native ads
Nov 16, 2021
75174f6
[sspbc-adapter] add support for bid.admNative property
Nov 16, 2021
7891a9e
[sspbc-adapter] ensure that placement id length is always 3 (improves…
Nov 18, 2021
ad6a21a
[sspbc-adapter] read publisher id and custom ad label, then send them…
Nov 18, 2021
e422156
[sspbc-adapter] adlabel and pubid are set as empty strings, if not pr…
Nov 18, 2021
9a792f0
[sspbc-adapter] jstracker data fix
Nov 22, 2021
9ea4c7c
[sspbc-adapter] jstracker data fix
Nov 22, 2021
4461f6f
[sspbc-adapter] send tagid in notifications
Nov 24, 2021
ca7c5b4
[sspbc-adapter] add gvlid to spec; prepare getUserSyncs for iframe + …
Nov 26, 2021
e419627
update remote repo
wojciech-bialy-wpm Sep 20, 2022
af81f6f
update remote repo
wojciech-bialy-wpm Sep 20, 2022
cb7eed2
update remote repo
wojciech-bialy-wpm Sep 20, 2022
99801d1
Merge pull request #28 from prebid/master
wojciech-bialy-wpm Jul 3, 2023
7bb7efa
Merge pull request #29 from prebid/master
wojciech-bialy-wpm Jul 12, 2023
ac9e623
cleanup of grupawp/prebid master branch
wojciech-bialy-wpm Jul 12, 2023
5a206fd
update sspBC adapter to v 5.9
wojciech-bialy-wpm Jul 12, 2023
6d1f2a8
update tests for sspBC bid adapter
wojciech-bialy-wpm Jul 13, 2023
35a190f
Merge pull request #30 from prebid/master
wojciech-bialy-wpm Aug 23, 2023
8fd00ff
[sspbc-adapter] add support for topicsFPD module
wojciech-bialy-wpm Aug 30, 2023
e5eba5d
[sspbc-adapter] change topic segment ids to int
wojciech-bialy-wpm Sep 5, 2023
cc82ed7
Merge pull request #31 from prebid/master
wojciech-bialy-wpm Oct 30, 2023
e9c99f8
merge repo updates
wojciech-bialy-wpm Oct 30, 2023
34efbff
[sspbc-adapter] fix video ad detection
wojciech-bialy-wpm Oct 30, 2023
94310cd
[sspbc-adapter] update adapter version to 5.92
wojciech-bialy-wpm Oct 30, 2023
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
4 changes: 2 additions & 2 deletions modules/sspBCBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const SYNC_URL = 'https://ssp.wp.pl/bidder/usersync';
const NOTIFY_URL = 'https://ssp.wp.pl/bidder/notify';
const GVLID = 676;
const TMAX = 450;
const BIDDER_VERSION = '5.91';
const BIDDER_VERSION = '5.92';
const DEFAULT_CURRENCY = 'PLN';
const W = window;
const { navigator } = W;
Expand Down Expand Up @@ -506,7 +506,7 @@ const mapImpression = slot => {
}

const isVideoAd = bid => {
const xmlTester = new RegExp(/^<\?xml/);
const xmlTester = new RegExp(/^<\?xml|<VAST/, 'i');
return bid.adm && bid.adm.match(xmlTester);
}

Expand Down