sokil/php-vast
最新稳定版本:2.2.1
Composer 安装命令:
composer require sokil/php-vast
包简介
Generator and parser for VAST documents
README 文档
README
PHP-VAST
⭐ VAST Ad generator and parser library on PHP.
Specs
- VAST 2.0 Spec: http://www.iab.net/media/file/VAST-2_0-FINAL.pdf
- VAST 3.0 Spec: http://www.iab.com/wp-content/uploads/2015/06/VASTv3_0.pdf
- VAST 4.0 Spec:
- VAST 4.1 Spec:
- VAST Samples
Install
Install library through composer:
composer require sokil/php-vast
Quick start
// create document $factory = new \Sokil\Vast\Factory(); $document = $factory->create('4.1'); // insert Ad section $ad1 = $document ->createInLineAdSection() ->setId('ad1') ->setAdSystem('Ad Server Name') ->setAdTitle('Ad Title') ->addImpression('http://ad.server.com/impression', 'imp1'); // create creative for ad section $linearCreative = $ad1 ->createLinearCreative() ->setDuration(128) ->setId('013d876d-14fc-49a2-aefd-744fce68365b') ->setAdId('pre') ->setVideoClicksClickThrough('http://entertainmentserver.com/landing') ->addVideoClicksClickTracking('http://ad.server.com/videoclicks/clicktracking') ->addVideoClicksCustomClick('http://ad.server.com/videoclicks/customclick') ->addTrackingEvent('start', 'http://ad.server.com/trackingevent/start') ->addTrackingEvent('pause', 'http://ad.server.com/trackingevent/stop'); // add closed caption file (Closed Caption support starts on VAST 4.1) $linearCreative ->createClosedCaptionFile() ->setLanguage('en-US') ->setType('text/srt') ->setUrl('http://server.com/cc.srt'); // add 100x100 media file $linearCreative ->createMediaFile() ->setProgressiveDelivery() ->setType('video/mp4') ->setHeight(100) ->setWidth(100) ->setBitrate(2500) ->setUrl('http://server.com/media1.mp4'); // add 200x200 media file $linearCreative ->createMediaFile() ->setProgressiveDelivery() ->setType('video/mp4') ->setHeight(200) ->setWidth(200) ->setBitrate(2500) ->setUrl('http://server.com/media2.mp4'); // get dom document $domDocument = $document->toDomDocument(); // get XML string echo $document;
This will generate:
<?xml version="1.0" encoding="UTF-8"?> <VAST version="2.0"> <Ad id="ad1"> <InLine> <AdSystem>Ad Server Name</AdSystem> <AdTitle><![CDATA[Ad Title]]></AdTitle> <Impression id="imp1"><![CDATA[http://ad.server.com/impression]]></Impression> <Creatives> <Creative> <Linear> <Duration>00:02:08</Duration> <VideoClicks> <ClickThrough><![CDATA[http://entertainmentserver.com/landing]]></ClickThrough> <ClickTracking><![CDATA[http://ad.server.com/videoclicks/clicktracking]]></ClickTracking> <CustomClick><![CDATA[http://ad.server.com/videoclicks/customclick]]></CustomClick> </VideoClicks> <TrackingEvents> <Tracking event="start"><![CDATA[http://ad.server.com/trackingevent/start]]></Tracking> <Tracking event="pause"><![CDATA[http://ad.server.com/trackingevent/stop]]></Tracking> </TrackingEvents> <MediaFiles> <ClosedCaptionFiles> <ClosedCaptionFile language="en-US" type="text/srt"> <![CDATA[http://server.com/cc.srt]]> </ClosedCaptionFile> </ClosedCaptionFiles> <MediaFile delivery="progressive" type="video/mp4" height="100" width="100" bitrate="2500"> <![CDATA[http://server.com/media1.mp4]]> </MediaFile> <MediaFile delivery="progressive" type="video/mp4" height="200" width="200" bitrate="2500"> <![CDATA[http://server.com/media2.mp4]]> </MediaFile> </MediaFiles> </Linear> </Creative> </Creatives> </InLine> </Ad> </VAST>
Custom Specification Support
VAST document elements are completely described in it's specification, but some Ad servers may add support for custom elements and attributes. This library strictly follows specification, generally because two dialects of VAST may conflict with each other. You may write our own dialect by overriding element builder and create any elements and attributes you want.
The VAST dialect is described in \Sokil\Vast\ElementBuilder class. By overriding it you may create instances of your own classes and add there any setters.
First let's create a class for MediaFile and add some custom attributes:
<?php namespace Acme\Vast\ElementBuilder\Element; use Sokil\Vast\Creative\InLine\Linear\MediaFile; class AcmeMediaFile extends MediaFile { public function setMinDuration($seconds) { $seconds = (int)$seconds; if ($seconds <= 0) { thow new \InvalidArgumentException('Invalid min duration specified, must be positive int') } $this->domElement->setAttribute('minDuration', $seconds); return $this; } }
Now we need to override the default element builder and create our own MediaFile factory method:
<?php namespace Acme\Vast\ElementBuilder; use Sokil\Vast\ElementBuilder; use Acme\Vast\ElementBuilder\Element\AcmeMediaFile; class AcmeElementBuilder extends ElementBuilder { /** * <Ad><InLine><Creatives><Creative><Linear><MediaFile> * * @param \DOMElement $mediaFileDomElement * * @return AcmeMediaFile */ public function createInLineAdLinearCreativeMediaFile(\DOMElement $mediaFileDomElement) { return new AcmeMediaFile($mediaFileDomElement); } }
Now we need to confugure VAST factory to use overridden element builder:
<?php use Acme\Vast\ElementBuilder\AcmeElementBuilder; use Sokil\Vast\Factory; $elementBuilder = new AcmeElementBuilder(); $factory = new Factory($elementBuilder); $document = $factory->create('4.1'); $ad = $document->createInLineAdSection(); $creative = $ad->createLinearCreative(); $mediaFile = $creative->createMediaFile(); $mediaFile->setMinDiration(10);
If you have an AD server and want to add support for your custom tag, create your own library with custom elements and element builder, or add a pull request to this library.
统计信息
- 总下载量: 151.79k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 82
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-12-07