-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Rubicon project improvement/user sync #1549
Merged
Merged
Changes from all commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
89515a0
Add new user sync module
grevory 3adaee4
Rename user sync file
grevory e233465
Reset image pixel queue after firing pixels
grevory 9d20a9a
Resolved conflicts from master
grevory b7d1455
Added unit test for user sync
grevory efa23e2
Merge conflict from master
grevory 9bef360
Conflict with master
grevory ca8cb54
Fixed typo
grevory b28f15b
Overlooked conflict from master
grevory 7840f88
Improvements based on peer feedback for user sync
grevory 7450ee5
Merge branch 'master' of https://github.com/rubicon-project/Prebid.js…
grevory f981c20
Added global user sync config
grevory 66abfef
Allow auto-syncing override
grevory f34eb0f
Prevent syncing if there is no cookie support
grevory bd0cef2
Only trigger sync once per page
grevory 4b13cc2
Limit number of user syncs per bidder
grevory 2174667
User syncs should fire pixels without adding element to DOM
grevory 61dbb60
Merged master into improvement/user-sync-enhancements
grevory c5bf2a8
Randomize user sync order by type
grevory 94a64c7
Merge branch 'master' into improvement/user-sync-enhancements
grevory ff44cb7
Comment about shuffling user syncs
grevory 26f1e20
Remove karma.conf.js and fix unused default value
grevory 8fc8ee2
Fix prebid server adapter test to use the right cookie function
grevory b373c69
Added iframe support to user sync
grevory 3f66618
Fix oversights for user sync
grevory c414f94
Move try catch block for user sync
grevory df99a16
Option to disable user sync
grevory a213c81
Enable specific bidders for user sync
grevory 7cb4c24
Merge branch 'improvement/user-sync' into improvement/user-sync-enhan…
grevory bb30408
Merge branch 'improvement/user-sync-iframe' of https://github.com/rub…
grevory c1cca60
Encapsulate the user sync module
grevory 82d1ce6
Remove unused functions for user sync
grevory 9f6d3fd
Merge branch 'master' of https://github.com/rubicon-project/Prebid.js…
grevory 7c71de1
Clean merge markers
grevory d0185d6
Merge branch 'improvement/user-sync' of https://github.com/rubicon-pr…
88f8197
Merge branch 'master' into improvement/user-sync
bd9acb4
fix usersync test problems
6766102
added setConfig to userSync
0e67a72
Merge branch 'master' into improvement/user-sync
2213fa5
fixed lint problem
e79760b
Change override user sync API and how user sync uses config
grevory f00a8b5
Fixed registerSync API to avoid spread operator
grevory f49a1e4
Merged from upstream
grevory 9a197ab
Fixed issues from last conflict resolution
grevory cd5b6f5
Merge branch 'improvement/user-sync' of https://github.com/rubicon-pr…
mkendall07 9718d06
Small refactoring to inject dependencies better.
dbemiller a7a2945
Added a test for when user syncs are disabled.
dbemiller 20ce33a
Merge branch 'master' of https://github.com/prebid/Prebid.js into rub…
dbemiller b555778
Implemented usersync in the base adapter.
dbemiller ecff1a7
user-sync updates
cd7206a
not tracking client bidder syncs
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A small improvement.
Since we have default value for userSync and there is not setter for userSync. It will always return an object so no need to keep a conditional check using
||
You have also kept a test case check to validate default config.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jaiminpanchal27
userSync
can be set withconfig.setConfig({userSync: null});
though I'm not sure why anyone would set it tonull
or anotherfalsey
value, unless maybe they thought it would turn it off.