-
Notifications
You must be signed in to change notification settings - Fork 187
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
Showing
12 changed files
with
674 additions
and
0 deletions.
There are no files selected for viewing
182 changes: 182 additions & 0 deletions
182
src/main/java/org/prebid/server/bidder/zmaticoo/ZMaticooBidder.java
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,182 @@ | ||
package org.prebid.server.bidder.zmaticoo; | ||
|
||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.core.type.TypeReference; | ||
import com.fasterxml.jackson.databind.JsonNode; | ||
import com.iab.openrtb.request.BidRequest; | ||
import com.iab.openrtb.request.Imp; | ||
import com.iab.openrtb.request.Native; | ||
import com.iab.openrtb.response.Bid; | ||
import com.iab.openrtb.response.BidResponse; | ||
import com.iab.openrtb.response.SeatBid; | ||
import io.vertx.core.http.HttpMethod; | ||
import org.apache.commons.collections4.CollectionUtils; | ||
import org.apache.commons.lang3.ObjectUtils; | ||
import org.apache.commons.lang3.StringUtils; | ||
import org.prebid.server.bidder.Bidder; | ||
import org.prebid.server.bidder.model.BidderBid; | ||
import org.prebid.server.bidder.model.BidderCall; | ||
import org.prebid.server.bidder.model.BidderError; | ||
import org.prebid.server.bidder.model.HttpRequest; | ||
import org.prebid.server.bidder.model.Result; | ||
import org.prebid.server.exception.PreBidException; | ||
import org.prebid.server.json.DecodeException; | ||
import org.prebid.server.json.JacksonMapper; | ||
import org.prebid.server.model.UpdateResult; | ||
import org.prebid.server.proto.openrtb.ext.ExtPrebid; | ||
import org.prebid.server.proto.openrtb.ext.request.zmaticoo.ExtImpZMaticoo; | ||
import org.prebid.server.proto.openrtb.ext.response.BidType; | ||
import org.prebid.server.util.BidderUtil; | ||
import org.prebid.server.util.HttpUtil; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Objects; | ||
|
||
public class ZMaticooBidder implements Bidder<BidRequest> { | ||
|
||
private static final TypeReference<ExtPrebid<?, ExtImpZMaticoo>> ZMATICOO_EXT_TYPE_REFERENCE = | ||
new TypeReference<>() { | ||
}; | ||
|
||
private final String endpointUrl; | ||
private final JacksonMapper mapper; | ||
|
||
public ZMaticooBidder(String endpointUrl, JacksonMapper mapper) { | ||
this.endpointUrl = HttpUtil.validateUrl(Objects.requireNonNull(endpointUrl)); | ||
this.mapper = Objects.requireNonNull(mapper); | ||
} | ||
|
||
@Override | ||
public Result<List<HttpRequest<BidRequest>>> makeHttpRequests(BidRequest request) { | ||
final List<BidderError> bidderErrors = new ArrayList<>(); | ||
final List<Imp> modifiedImps = new ArrayList<>(); | ||
|
||
for (Imp imp : request.getImp()) { | ||
try { | ||
validateImpExt(imp); | ||
modifiedImps.add(modifyImp(imp)); | ||
} catch (PreBidException e) { | ||
bidderErrors.add(BidderError.badInput(e.getMessage())); | ||
} | ||
} | ||
|
||
if (CollectionUtils.isNotEmpty(bidderErrors)) { | ||
return Result.withErrors(bidderErrors); | ||
} | ||
|
||
final BidRequest modifiedRequest = request.toBuilder().imp(modifiedImps).build(); | ||
return Result.withValue(makeHttpRequest(modifiedRequest)); | ||
} | ||
|
||
private void validateImpExt(Imp imp) { | ||
final ExtImpZMaticoo extImpZMaticoo; | ||
try { | ||
extImpZMaticoo = mapper.mapper().convertValue(imp.getExt(), ZMATICOO_EXT_TYPE_REFERENCE).getBidder(); | ||
} catch (IllegalArgumentException e) { | ||
throw new PreBidException(e.getMessage()); | ||
} | ||
if (StringUtils.isBlank(extImpZMaticoo.getPubId()) || StringUtils.isBlank(extImpZMaticoo.getZoneId())) { | ||
throw new PreBidException("imp.ext.pubId or imp.ext.zoneId required"); | ||
} | ||
} | ||
|
||
private Imp modifyImp(Imp imp) { | ||
final Native xNative = imp.getXNative(); | ||
if (xNative == null) { | ||
return imp; | ||
} | ||
|
||
final UpdateResult<String> nativeRequest = resolveNativeRequest(xNative.getRequest()); | ||
return nativeRequest.isUpdated() | ||
? imp.toBuilder() | ||
.xNative(xNative.toBuilder() | ||
.request(nativeRequest.getValue()) | ||
.build()) | ||
.build() | ||
: imp; | ||
} | ||
|
||
private UpdateResult<String> resolveNativeRequest(String nativeRequest) { | ||
final JsonNode nativeRequestNode; | ||
try { | ||
nativeRequestNode = StringUtils.isNotBlank(nativeRequest) | ||
? mapper.mapper().readTree(nativeRequest) | ||
: mapper.mapper().createObjectNode(); | ||
} catch (JsonProcessingException e) { | ||
throw new PreBidException(e.getMessage()); | ||
} | ||
|
||
if (nativeRequestNode.has("native")) { | ||
return UpdateResult.unaltered(nativeRequest); | ||
} | ||
|
||
final String updatedNativeRequest = mapper.mapper().createObjectNode() | ||
.putPOJO("native", nativeRequestNode) | ||
.toString(); | ||
|
||
return UpdateResult.updated(updatedNativeRequest); | ||
} | ||
|
||
private HttpRequest<BidRequest> makeHttpRequest(BidRequest modifiedRequest) { | ||
return HttpRequest.<BidRequest>builder() | ||
.method(HttpMethod.POST) | ||
.uri(endpointUrl) | ||
.headers(HttpUtil.headers()) | ||
.impIds(BidderUtil.impIds(modifiedRequest)) | ||
.payload(modifiedRequest) | ||
.body(mapper.encodeToBytes(modifiedRequest)) | ||
.build(); | ||
} | ||
|
||
@Override | ||
public final Result<List<BidderBid>> makeBids(BidderCall<BidRequest> httpCall, BidRequest bidRequest) { | ||
try { | ||
final List<BidderError> errors = new ArrayList<>(); | ||
final BidResponse bidResponse = mapper.decodeValue(httpCall.getResponse().getBody(), BidResponse.class); | ||
return Result.of(extractBids(bidResponse, errors), errors); | ||
} catch (DecodeException e) { | ||
return Result.withError(BidderError.badServerResponse(e.getMessage())); | ||
} | ||
} | ||
|
||
private static List<BidderBid> extractBids(BidResponse bidResponse, List<BidderError> errors) { | ||
if (bidResponse == null || CollectionUtils.isEmpty(bidResponse.getSeatbid())) { | ||
return Collections.emptyList(); | ||
} | ||
|
||
return bidResponse.getSeatbid().stream() | ||
.filter(Objects::nonNull) | ||
.map(SeatBid::getBid) | ||
.filter(Objects::nonNull) | ||
.flatMap(Collection::stream) | ||
.filter(Objects::nonNull) | ||
.map(bid -> makeBidderBid(bid, bidResponse.getCur(), errors)) | ||
.filter(Objects::nonNull) | ||
.toList(); | ||
} | ||
|
||
private static BidderBid makeBidderBid(Bid bid, String currency, List<BidderError> errors) { | ||
try { | ||
final BidType bidType = getBidMediaType(bid); | ||
return BidderBid.of(bid, bidType, currency); | ||
} catch (PreBidException e) { | ||
errors.add(BidderError.badServerResponse(e.getMessage())); | ||
return null; | ||
} | ||
} | ||
|
||
private static BidType getBidMediaType(Bid bid) { | ||
final int markupType = ObjectUtils.defaultIfNull(bid.getMtype(), 0); | ||
return switch (markupType) { | ||
case 1 -> BidType.banner; | ||
case 2 -> BidType.video; | ||
case 4 -> BidType.xNative; | ||
default -> throw new PreBidException( | ||
"unrecognized bid type in response from zmaticoo for bid " + bid.getImpid()); | ||
}; | ||
} | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/org/prebid/server/proto/openrtb/ext/request/zmaticoo/ExtImpZMaticoo.java
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,14 @@ | ||
package org.prebid.server.proto.openrtb.ext.request.zmaticoo; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import lombok.Value; | ||
|
||
@Value(staticConstructor = "of") | ||
public class ExtImpZMaticoo { | ||
|
||
@JsonProperty("pubId") | ||
String pubId; | ||
|
||
@JsonProperty("zoneId") | ||
String zoneId; | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/org/prebid/server/spring/config/bidder/ZMaticooBidderConfiguration.java
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,41 @@ | ||
package org.prebid.server.spring.config.bidder; | ||
|
||
import org.prebid.server.bidder.BidderDeps; | ||
import org.prebid.server.bidder.zmaticoo.ZMaticooBidder; | ||
import org.prebid.server.json.JacksonMapper; | ||
import org.prebid.server.spring.config.bidder.model.BidderConfigurationProperties; | ||
import org.prebid.server.spring.config.bidder.util.BidderDepsAssembler; | ||
import org.prebid.server.spring.config.bidder.util.UsersyncerCreator; | ||
import org.prebid.server.spring.env.YamlPropertySourceFactory; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.boot.context.properties.ConfigurationProperties; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.PropertySource; | ||
|
||
import javax.validation.constraints.NotBlank; | ||
|
||
@Configuration | ||
@PropertySource(value = "classpath:/bidder-config/zmaticoo.yaml", factory = YamlPropertySourceFactory.class) | ||
public class ZMaticooBidderConfiguration { | ||
|
||
private static final String BIDDER_NAME = "zmaticoo"; | ||
|
||
@Bean("zmaticooConfigurationProperties") | ||
@ConfigurationProperties("adapters.zmaticoo") | ||
BidderConfigurationProperties configurationProperties() { | ||
return new BidderConfigurationProperties(); | ||
} | ||
|
||
@Bean | ||
BidderDeps zmaticooBidderDeps(BidderConfigurationProperties zmaticooConfigurationProperties, | ||
@NotBlank @Value("${external-url}") String externalUrl, | ||
JacksonMapper mapper) { | ||
|
||
return BidderDepsAssembler.forBidder(BIDDER_NAME) | ||
.withConfig(zmaticooConfigurationProperties) | ||
.usersyncerCreator(UsersyncerCreator.create(externalUrl)) | ||
.bidderCreator(config -> new ZMaticooBidder(config.getEndpoint(), mapper)) | ||
.assemble(); | ||
} | ||
} |
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,12 @@ | ||
adapters: | ||
zmaticoo: | ||
endpoint: https://bid.zmaticoo.com/prebid/bid | ||
meta-info: | ||
maintainer-email: adam.li@eclicktech.com.cn | ||
app-media-types: | ||
- banner | ||
- video | ||
- native | ||
site-media-types: | ||
supported-vendors: | ||
vendor-id: 803 |
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,22 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "zMaticoo Adapter Params", | ||
"description": "A schema which validates params accepted by the zMaticoo adapter", | ||
"type": "object", | ||
"properties": { | ||
"pubId": { | ||
"type": "string", | ||
"description": "Publisher ID", | ||
"minLength": 1 | ||
}, | ||
"zoneId": { | ||
"type": "string", | ||
"description": "Zone Id", | ||
"minLength": 1 | ||
} | ||
}, | ||
"required": [ | ||
"pubId", | ||
"zoneId" | ||
] | ||
} |
Oops, something went wrong.