Skip to content

Commit

Permalink
new adapter (#12067)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pubrise authored Jul 31, 2024
1 parent be37440 commit cbec10c
Show file tree
Hide file tree
Showing 3 changed files with 612 additions and 0 deletions.
19 changes: 19 additions & 0 deletions modules/pubriseBidAdapter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER, NATIVE, VIDEO } from '../src/mediaTypes.js';
import { isBidRequestValid, buildRequests, interpretResponse, getUserSyncs } from '../libraries/teqblazeUtils/bidderUtils.js';

const BIDDER_CODE = 'pubrise';
const AD_URL = 'https://backend.pubrise.ai/pbjs';
const SYNC_URL = 'https://sync.pubrise.ai';

export const spec = {
code: BIDDER_CODE,
supportedMediaTypes: [BANNER, VIDEO, NATIVE],

isBidRequestValid: isBidRequestValid(),
buildRequests: buildRequests(AD_URL),
interpretResponse,
getUserSyncs: getUserSyncs(SYNC_URL)
};

registerBidder(spec);
79 changes: 79 additions & 0 deletions modules/pubriseBidAdapter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Overview

```
Module Name: Pubrise Bidder Adapter
Module Type: Pubrise Bidder Adapter
Maintainer: prebid@pubrise.ai
```

# Description

Connects to Pubrise exchange for bids.
Pubrise bid adapter supports Banner, Video (instream and outstream) and Native.

# Test Parameters
```
var adUnits = [
// Will return static test banner
{
code: 'adunit1',
mediaTypes: {
banner: {
sizes: [ [300, 250], [320, 50] ],
}
},
bids: [
{
bidder: 'pubrise',
params: {
placementId: 'testBanner',
}
}
]
},
{
code: 'addunit2',
mediaTypes: {
video: {
playerSize: [ [640, 480] ],
context: 'instream',
minduration: 5,
maxduration: 60,
}
},
bids: [
{
bidder: 'pubrise',
params: {
placementId: 'testVideo',
}
}
]
},
{
code: 'addunit3',
mediaTypes: {
native: {
title: {
required: true
},
body: {
required: true
},
icon: {
required: true,
size: [64, 64]
}
}
},
bids: [
{
bidder: 'pubrise',
params: {
placementId: 'testNative',
}
}
]
}
];
```
Loading

0 comments on commit cbec10c

Please sign in to comment.