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.
New Adapter: Adtargetme (prebid#2296)
- Loading branch information
1 parent
7532344
commit cfd924f
Showing
25 changed files
with
1,945 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,197 @@ | ||
package adtrgtme | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"net/http" | ||
|
||
"github.com/mxmCherry/openrtb/v16/openrtb2" | ||
|
||
"github.com/prebid/prebid-server/adapters" | ||
"github.com/prebid/prebid-server/config" | ||
"github.com/prebid/prebid-server/errortypes" | ||
"github.com/prebid/prebid-server/openrtb_ext" | ||
) | ||
|
||
type adapter struct { | ||
endpoint string | ||
} | ||
|
||
// Builder builds a new instance of the Adtrgtme adapter for the given bidder with the given config. | ||
func Builder(bidderName openrtb_ext.BidderName, config config.Adapter) (adapters.Bidder, error) { | ||
bidder := &adapter{ | ||
endpoint: config.Endpoint, | ||
} | ||
return bidder, nil | ||
} | ||
|
||
func (v *adapter) MakeRequests( | ||
openRTBRequest *openrtb2.BidRequest, | ||
requestInfo *adapters.ExtraRequestInfo, | ||
) ( | ||
[]*adapters.RequestData, | ||
[]error, | ||
) { | ||
var requests []*adapters.RequestData | ||
var errors []error | ||
|
||
requestCopy := *openRTBRequest | ||
|
||
for _, imp := range openRTBRequest.Imp { | ||
requestCopy.Imp = []openrtb2.Imp{imp} | ||
|
||
requestJSON, err := json.Marshal(openRTBRequest) | ||
if err != nil { | ||
errors = append(errors, err) | ||
continue | ||
} | ||
|
||
requestURI, err := v.buildRequestURI(&requestCopy) | ||
if err != nil { | ||
errors = append(errors, err) | ||
continue | ||
} | ||
|
||
requestData := &adapters.RequestData{ | ||
Method: http.MethodPost, | ||
Uri: requestURI, | ||
Body: requestJSON, | ||
Headers: makeRequestHeaders(&requestCopy), | ||
} | ||
|
||
requests = append(requests, requestData) | ||
} | ||
|
||
return requests, errors | ||
} | ||
|
||
func (v *adapter) buildRequestURI(openRTBRequest *openrtb2.BidRequest) (string, error) { | ||
if openRTBRequest.Site != nil { | ||
if openRTBRequest.Site.ID != "" { | ||
return fmt.Sprintf("%s?s=%s&prebid", v.endpoint, openRTBRequest.Site.ID), nil | ||
} | ||
return "", &errortypes.BadInput{ | ||
Message: "request.Site.ID is not provided", | ||
} | ||
} else if openRTBRequest.App != nil { | ||
if openRTBRequest.App.ID != "" { | ||
return fmt.Sprintf("%s?s=%s&prebid", v.endpoint, openRTBRequest.App.ID), nil | ||
} | ||
return "", &errortypes.BadInput{ | ||
Message: "request.App.ID is not provided", | ||
} | ||
} | ||
return "", &errortypes.BadInput{ | ||
Message: "request.Site or request.App are not provided", | ||
} | ||
} | ||
|
||
func makeRequestHeaders(openRTBRequest *openrtb2.BidRequest) http.Header { | ||
headers := http.Header{} | ||
headers.Add("Content-Type", "application/json;charset=utf-8") | ||
headers.Add("Accept", "application/json") | ||
headers.Add("X-Openrtb-Version", "2.5") | ||
|
||
if openRTBRequest.Device != nil { | ||
if len(openRTBRequest.Device.UA) > 0 { | ||
headers.Add("User-Agent", openRTBRequest.Device.UA) | ||
} | ||
|
||
if len(openRTBRequest.Device.IPv6) > 0 { | ||
headers.Add("X-Forwarded-For", openRTBRequest.Device.IPv6) | ||
} | ||
|
||
if len(openRTBRequest.Device.IP) > 0 { | ||
headers.Add("X-Forwarded-For", openRTBRequest.Device.IP) | ||
} | ||
} | ||
return headers | ||
} | ||
|
||
func (v *adapter) checkResponseStatusCodes(response *adapters.ResponseData) error { | ||
if response.StatusCode == http.StatusBadRequest { | ||
return &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Unexpected status code: [ %d ]", response.StatusCode), | ||
} | ||
} | ||
|
||
if response.StatusCode == http.StatusServiceUnavailable { | ||
return &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Something went wrong, please contact your Account Manager. Status Code: [ %d ] ", response.StatusCode), | ||
} | ||
} | ||
|
||
if response.StatusCode != http.StatusOK { | ||
return &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Unexpected status code: [ %d ]. Run with request.debug = 1 for more info", response.StatusCode), | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (v *adapter) MakeBids( | ||
openRTBRequest *openrtb2.BidRequest, | ||
requestToBidder *adapters.RequestData, | ||
bidderRawResponse *adapters.ResponseData, | ||
) ( | ||
*adapters.BidderResponse, | ||
[]error, | ||
) { | ||
if bidderRawResponse.StatusCode == http.StatusNoContent { | ||
return nil, nil | ||
} | ||
|
||
httpStatusError := v.checkResponseStatusCodes(bidderRawResponse) | ||
if httpStatusError != nil { | ||
return nil, []error{httpStatusError} | ||
} | ||
|
||
var response openrtb2.BidResponse | ||
if err := json.Unmarshal(bidderRawResponse.Body, &response); err != nil { | ||
return nil, []error{&errortypes.BadServerResponse{ | ||
Message: "Bad Server Response", | ||
}} | ||
} | ||
|
||
if len(response.SeatBid) == 0 { | ||
return nil, []error{&errortypes.BadServerResponse{ | ||
Message: "Empty SeatBid array", | ||
}} | ||
} | ||
|
||
bidResponse := adapters.NewBidderResponseWithBidsCapacity(len(openRTBRequest.Imp)) | ||
bidResponse.Currency = response.Cur | ||
for _, seatBid := range response.SeatBid { | ||
for i, bid := range seatBid.Bid { | ||
bidType, err := getMediaTypeForImp(bid.ImpID, openRTBRequest.Imp) | ||
if err != nil { | ||
return nil, []error{err} | ||
} | ||
|
||
b := &adapters.TypedBid{ | ||
Bid: &seatBid.Bid[i], | ||
BidType: bidType, | ||
} | ||
bidResponse.Bids = append(bidResponse.Bids, b) | ||
} | ||
} | ||
return bidResponse, nil | ||
} | ||
|
||
func getMediaTypeForImp(impId string, imps []openrtb2.Imp) (openrtb_ext.BidType, error) { | ||
for _, imp := range imps { | ||
if imp.ID == impId { | ||
if imp.Banner != nil { | ||
return openrtb_ext.BidTypeBanner, nil | ||
} else { | ||
return "", &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Unsupported bidtype for bid: \"%s\"", impId), | ||
} | ||
} | ||
} | ||
} | ||
return "", &errortypes.BadInput{ | ||
Message: fmt.Sprintf("Failed to find impression: \"%s\"", impId), | ||
} | ||
} |
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,20 @@ | ||
package adtrgtme | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/prebid/prebid-server/adapters/adapterstest" | ||
"github.com/prebid/prebid-server/config" | ||
"github.com/prebid/prebid-server/openrtb_ext" | ||
) | ||
|
||
func TestJsonSamples(t *testing.T) { | ||
bidder, buildErr := Builder(openrtb_ext.BidderAdtrgtme, config.Adapter{ | ||
Endpoint: "http://localhost/ssp"}) | ||
|
||
if buildErr != nil { | ||
t.Fatalf("Builder returned unexpected error %v", buildErr) | ||
} | ||
|
||
adapterstest.RunJSONBidderTest(t, "adtrgtmetest", bidder) | ||
} |
146 changes: 146 additions & 0 deletions
146
adapters/adtrgtme/adtrgtmetest/exemplary/banner-app.json
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,146 @@ | ||
{ | ||
"mockBidRequest": { | ||
"id": "test-req-id", | ||
"at": 1, | ||
"tmax": 300, | ||
"imp": [ | ||
{ | ||
"banner": { | ||
"w": 300, | ||
"h": 250 | ||
}, | ||
"id": "test-bid-id", | ||
"bidfloor": 1, | ||
"bidfloorcur": "USD", | ||
"secure": 1 | ||
} | ||
], | ||
"app": { | ||
"publisher": { | ||
"id": "test-site-publisher-id" | ||
}, | ||
"cat": [ | ||
"test-cat" | ||
], | ||
"bundle": "com.app.test", | ||
"name": "Test App", | ||
"domain": "testapp.com", | ||
"id": "123456789" | ||
}, | ||
"device": { | ||
"ua": "test-device-user-agent", | ||
"ip": "123.123.123.123", | ||
"geo": { | ||
"country": "TST" | ||
}, | ||
"os": "Android", | ||
"language": "en" | ||
}, | ||
"user": { | ||
"id": "test-user-id" | ||
} | ||
}, | ||
"httpCalls": [ | ||
{ | ||
"expectedRequest": { | ||
"uri": "http://localhost/ssp?s=123456789&prebid", | ||
"headers": { | ||
"Content-Type": [ | ||
"application/json;charset=utf-8" | ||
], | ||
"Accept": [ | ||
"application/json" | ||
], | ||
"X-Openrtb-Version": [ | ||
"2.5" | ||
], | ||
"User-Agent": [ | ||
"test-device-user-agent" | ||
], | ||
"X-Forwarded-For": [ | ||
"123.123.123.123" | ||
] | ||
}, | ||
"body": { | ||
"id": "test-req-id", | ||
"at": 1, | ||
"tmax": 300, | ||
"imp": [ | ||
{ | ||
"banner": { | ||
"w": 300, | ||
"h": 250 | ||
}, | ||
"id": "test-bid-id", | ||
"bidfloor": 1, | ||
"bidfloorcur": "USD", | ||
"secure": 1 | ||
} | ||
], | ||
"app": { | ||
"publisher": { | ||
"id": "test-site-publisher-id" | ||
}, | ||
"cat": [ | ||
"test-cat" | ||
], | ||
"bundle": "com.app.test", | ||
"name": "Test App", | ||
"domain": "testapp.com", | ||
"id": "123456789" | ||
}, | ||
"device": { | ||
"ua": "test-device-user-agent", | ||
"ip": "123.123.123.123", | ||
"geo": { | ||
"country": "TST" | ||
}, | ||
"os": "Android", | ||
"language": "en" | ||
}, | ||
"user": { | ||
"id": "test-user-id" | ||
} | ||
} | ||
}, | ||
"mockResponse": { | ||
"status": 200, | ||
"body": { | ||
"id": "test-req-id", | ||
"seatbid": [ | ||
{ | ||
"bid": [ | ||
{ | ||
"id": "test-bid-id", | ||
"impid": "test-bid-id", | ||
"price": 1, | ||
"adm": "<div>test</div>", | ||
"crid": "test-creative-id" | ||
} | ||
] | ||
} | ||
], | ||
"bidid": "test-seatbid-id", | ||
"cur": "USD" | ||
} | ||
} | ||
} | ||
], | ||
"expectedBidResponses": [ | ||
{ | ||
"currency": "USD", | ||
"bids": [ | ||
{ | ||
"bid": { | ||
"id": "test-bid-id", | ||
"impid": "test-bid-id", | ||
"price": 1, | ||
"adm": "<div>test</div>", | ||
"crid": "test-creative-id" | ||
}, | ||
"type": "banner" | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.