This repository has been archived by the owner on Dec 22, 2022. It is now read-only.
forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
305c058
commit a4d508a
Showing
28 changed files
with
1,146 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
package engagebdr | ||
|
||
import ( | ||
"encoding/json" | ||
"github.com/prebid/prebid-server/openrtb_ext" | ||
"net/http" | ||
|
||
"fmt" | ||
|
||
"github.com/mxmCherry/openrtb" | ||
"github.com/prebid/prebid-server/adapters" | ||
"github.com/prebid/prebid-server/errortypes" | ||
) | ||
|
||
type EngageBDRAdapter struct { | ||
http *adapters.HTTPAdapter | ||
URI string | ||
} | ||
|
||
func (adapter *EngageBDRAdapter) MakeRequests(request *openrtb.BidRequest, reqInfo *adapters.ExtraRequestInfo) ([]*adapters.RequestData, []error) { | ||
|
||
errors := make([]error, 0, len(request.Imp)) | ||
|
||
if request.Imp == nil || len(request.Imp) == 0 { | ||
errors = append(errors, &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Invalid BidRequest. No valid imp."), | ||
}) | ||
return nil, errors | ||
} | ||
|
||
// EngageBDR uses different sspid parameters for banner and video. | ||
sspidImps := make(map[string][]openrtb.Imp) | ||
for _, imp := range request.Imp { | ||
|
||
if imp.Audio != nil { | ||
errors = append(errors, &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Ignoring imp id=%s, invalid MediaType. EngageBDR only supports Banner, Video and Native.", imp.ID), | ||
}) | ||
continue | ||
} | ||
|
||
var bidderExt adapters.ExtImpBidder | ||
if err := json.Unmarshal(imp.Ext, &bidderExt); err != nil { | ||
errors = append(errors, &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Ignoring imp id=%s, error while decoding extImpBidder, err: %s.", imp.ID, err), | ||
}) | ||
continue | ||
} | ||
impExt := openrtb_ext.ExtImpEngageBDR{} | ||
err := json.Unmarshal(bidderExt.Bidder, &impExt) | ||
if err != nil { | ||
errors = append(errors, &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Ignoring imp id=%s, error while decoding impExt, err: %s.", imp.ID, err), | ||
}) | ||
continue | ||
} | ||
if impExt.Sspid == "" { | ||
errors = append(errors, &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Ignoring imp id=%s, no sspid present.", imp.ID), | ||
}) | ||
continue | ||
} | ||
sspidImps[impExt.Sspid] = append(sspidImps[impExt.Sspid], imp) | ||
} | ||
|
||
var adapterRequests []*adapters.RequestData | ||
|
||
headers := http.Header{} | ||
headers.Add("Content-Type", "application/json;charset=utf-8") | ||
|
||
for sspid, imps := range sspidImps { | ||
if len(imps) > 0 { | ||
// Make a copy as we don't want to change the original request | ||
reqCopy := *request | ||
reqCopy.Imp = imps | ||
reqJSON, err := json.Marshal(reqCopy) | ||
if err != nil { | ||
errors = append(errors, err) | ||
return nil, errors | ||
} | ||
adapterReq := adapters.RequestData{ | ||
Method: "POST", | ||
Uri: adapter.URI + "?zoneid=" + sspid, | ||
Body: reqJSON, | ||
Headers: headers, | ||
} | ||
adapterRequests = append(adapterRequests, &adapterReq) | ||
} | ||
} | ||
|
||
return adapterRequests, errors | ||
} | ||
|
||
func (adapter *EngageBDRAdapter) MakeBids(internalRequest *openrtb.BidRequest, externalRequest *adapters.RequestData, response *adapters.ResponseData) (*adapters.BidderResponse, []error) { | ||
if response.StatusCode == http.StatusNoContent { | ||
return nil, nil | ||
} | ||
|
||
if response.StatusCode == http.StatusBadRequest { | ||
return nil, []error{&errortypes.BadInput{ | ||
Message: fmt.Sprintf("Unexpected status code: %d. Run with request.debug = 1 for more info", response.StatusCode), | ||
}} | ||
} | ||
|
||
if response.StatusCode != http.StatusOK { | ||
return nil, []error{&errortypes.BadServerResponse{ | ||
Message: fmt.Sprintf("Unexpected status code: %d. Run with request.debug = 1 for more info", response.StatusCode), | ||
}} | ||
} | ||
|
||
var bidResp openrtb.BidResponse | ||
if err := json.Unmarshal(response.Body, &bidResp); err != nil { | ||
return nil, []error{err} | ||
} | ||
|
||
bidResponse := adapters.NewBidderResponseWithBidsCapacity(5) | ||
|
||
for _, sb := range bidResp.SeatBid { | ||
for i := range sb.Bid { | ||
bidResponse.Bids = append(bidResponse.Bids, &adapters.TypedBid{ | ||
Bid: &sb.Bid[i], | ||
BidType: getMediaTypeForImp(sb.Bid[i].ImpID, internalRequest.Imp), | ||
}) | ||
} | ||
} | ||
return bidResponse, nil | ||
} | ||
|
||
func getMediaTypeForImp(impId string, imps []openrtb.Imp) openrtb_ext.BidType { | ||
mediaType := openrtb_ext.BidTypeBanner | ||
for _, imp := range imps { | ||
if imp.ID == impId { | ||
if imp.Video != nil { | ||
mediaType = openrtb_ext.BidTypeVideo | ||
} else if imp.Native != nil { | ||
mediaType = openrtb_ext.BidTypeNative | ||
} | ||
return mediaType | ||
} | ||
} | ||
return mediaType | ||
} | ||
|
||
func NewEngageBDRBidder(client *http.Client, endpoint string) *EngageBDRAdapter { | ||
adapter := &adapters.HTTPAdapter{Client: client} | ||
return &EngageBDRAdapter{ | ||
http: adapter, | ||
URI: endpoint, | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package engagebdr | ||
|
||
import ( | ||
"github.com/prebid/prebid-server/adapters/adapterstest" | ||
"net/http" | ||
"testing" | ||
) | ||
|
||
func TestJsonSamples(t *testing.T) { | ||
adapterstest.RunJSONBidderTest(t, "engagebdrtest", NewEngageBDRBidder(new(http.Client), "http://dsp.bnmla.com/hb")) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
{ | ||
"mockBidRequest": { | ||
"id": "test-request-id", | ||
"imp": [ | ||
{ | ||
"id": "test-imp-id", | ||
"banner": { | ||
"w": 300, | ||
"h": 250 | ||
}, | ||
"ext": { | ||
"bidder": { | ||
"sspid": "99999" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
|
||
"httpCalls": [ | ||
{ | ||
"expectedRequest": { | ||
"uri": "http://dsp.bnmla.com/hb?zoneid=99999", | ||
"body":{ | ||
"id": "test-request-id", | ||
"imp": [{ | ||
"id": "test-imp-id", | ||
"banner": { | ||
"w": 300, | ||
"h": 250 | ||
}, | ||
"ext": { | ||
"bidder": { | ||
"sspid":"99999" | ||
} | ||
} | ||
}] | ||
} | ||
}, | ||
"mockResponse": { | ||
"status": 200, | ||
"body": { | ||
"id": "test-request-id", | ||
"seatbid": [ | ||
{ | ||
"bid": [ | ||
{ | ||
"id" : "test-imp-id", | ||
"impid": "test-imp-id", | ||
"price": 9.81, | ||
"adid": "abcde-12345", | ||
"adm": "<div><img src=\"https://cdn0.bnmla.com/0b1c6e85e9376e3092df8c9fc8ab9095.gif\" width=350 height=250 /></div>", | ||
"adomain": [ | ||
"advertiserdomain.com" | ||
], | ||
"iurl": "http://match.bnmla.com/usersync?sspid=59&redir=", | ||
"cid": "campaign1", | ||
"crid": "abcde-12345", | ||
"w": 300, | ||
"h": 250 | ||
} | ||
], | ||
"seat": "test-request-id" | ||
} | ||
], | ||
"bidid": "test-request-id", | ||
"cur": "USD" | ||
} | ||
} | ||
} | ||
], | ||
|
||
"expectedBidResponses": [ | ||
{ | ||
"currency": "USD", | ||
"bids": [ | ||
{ | ||
"bid": { | ||
"id": "test-imp-id", | ||
"impid": "test-imp-id", | ||
"price": 9.81, | ||
"adid": "abcde-12345", | ||
"adm": "<div><img src=\"https://cdn0.bnmla.com/0b1c6e85e9376e3092df8c9fc8ab9095.gif\" width=350 height=250 /></div>", | ||
"adomain": ["advertiserdomain.com"], | ||
"iurl": "http://match.bnmla.com/usersync?sspid=59&redir=", | ||
"cid": "campaign1", | ||
"crid": "abcde-12345", | ||
"w": 300, | ||
"h": 250 | ||
}, | ||
"type": "banner" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
|
Oops, something went wrong.