-
Notifications
You must be signed in to change notification settings - Fork 121
/
video.go
100 lines (90 loc) · 5.03 KB
/
video.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package openrtb
import (
"encoding/json"
"errors"
)
// Validation errors
var (
ErrInvalidVideoNoMIMEs = errors.New("openrtb: video has no mimes")
ErrInvalidVideoNoLinearity = errors.New("openrtb: video linearity missing")
ErrInvalidVideoNoProtocols = errors.New("openrtb: video protocols missing")
)
// Video object must be included directly in the impression object if the impression offered
// for auction is an in-stream video ad opportunity.
type Video struct {
MIMEs []string `json:"mimes,omitempty"` // Content MIME types supported.
MinDuration int `json:"minduration,omitempty"` // Minimum video ad duration in seconds
MaxDuration int `json:"maxduration,omitempty"` // Maximum video ad duration in seconds
Protocols []Protocol `json:"protocols,omitempty"` // Video bid response protocols
Protocol Protocol `json:"protocol,omitempty"` // Video bid response protocols DEPRECATED
Width int `json:"w"` // Width of the player in pixels
Height int `json:"h"` // Height of the player in pixels
StartDelay StartDelay `json:"startdelay,omitempty"` // Indicates the start delay in seconds
Linearity VideoLinearity `json:"linearity,omitempty"` // Indicates whether the ad impression is linear or non-linear
Skip int `json:"skip,omitempty"` // Indicates if the player will allow the video to be skipped, where 0 = no, 1 = yes.
SkipMin int `json:"skipmin,omitempty"` // Videos of total duration greater than this number of seconds can be skippable
SkipAfter int `json:"skipafter,omitempty"` // Number of seconds a video must play before skipping is enabled
Sequence int `json:"sequence,omitempty"` // Default: 1
BlockedAttrs []CreativeAttribute `json:"battr,omitempty"` // Blocked creative attributes
MaxExtended int `json:"maxextended,omitempty"` // Maximum extended video ad duration
MinBitrate int `json:"minbitrate,omitempty"` // Minimum bit rate in Kbps
MaxBitrate int `json:"maxbitrate,omitempty"` // Maximum bit rate in Kbps
BoxingAllowed *int `json:"boxingallowed,omitempty"` // If exchange publisher has rules preventing letter boxing
PodID string `json:"podid,omitempty"` // Pod id unique identifier for video ad pod
PodDuration int `json:"poddur,omitempty"` // Pod Duration total amount of time in seconds that advertisers may fill for a video ad pod
PodSequence PodSequence `json:"podseq,omitempty"` // Pod Sequence position of the video ad pod
SlotInPod SlotPositionInPod `json:"slotinpod,omitempty"` // Slot Position in ad
RqdDurs []int64 `json:"rqddurs,omitempty"` // Precise acceptable durations for video creatives inseconds.
MinCPMPerSecond float64 `json:"mincpmpersec,omitempty"` // Minimum CPM per second. This is a price floor for the portion of a video ad pod
PlaybackMethods []VideoPlayback `json:"playbackmethod,omitempty"` // List of allowed playback methods
Delivery []ContentDelivery `json:"delivery,omitempty"` // List of supported delivery methods
Position AdPosition `json:"pos,omitempty"` // Ad Position
CompanionAds []Banner `json:"companionad,omitempty"`
APIs []APIFramework `json:"api,omitempty"` // List of supported API frameworks
CompanionTypes []CompanionType `json:"companiontype,omitempty"`
Placement VideoPlacement `json:"placement,omitempty"` // Video placement type, DEPRECATED
Plcmt VideoPlcmt `json:"plcmt,omitempty"` // Video Plcmt type ad defined in ADCOM1.0
Ext json.RawMessage `json:"ext,omitempty"`
}
type jsonVideo Video
// Validate the object
func (v *Video) Validate() error {
if len(v.MIMEs) == 0 {
return ErrInvalidVideoNoMIMEs
} else if v.Linearity == 0 {
return ErrInvalidVideoNoLinearity
} else if v.Protocol == 0 && len(v.Protocols) == 0 {
return ErrInvalidVideoNoProtocols
}
return nil
}
// GetBoxingAllowed returns the boxing-allowed indicator
func (v *Video) GetBoxingAllowed() int {
if v.BoxingAllowed != nil {
return *v.BoxingAllowed
}
return 1
}
// MarshalJSON custom marshalling with normalization
func (v *Video) MarshalJSON() ([]byte, error) {
v.normalize()
return json.Marshal((*jsonVideo)(v))
}
// UnmarshalJSON custom unmarshalling with normalization
func (v *Video) UnmarshalJSON(data []byte) error {
var h jsonVideo
if err := json.Unmarshal(data, &h); err != nil {
return err
}
*v = (Video)(h)
v.normalize()
return nil
}
func (v *Video) normalize() {
if v.Sequence == 0 {
v.Sequence = 1
}
if v.Linearity == 0 {
v.Linearity = VideoLinearityLinear
}
}