Overview

Namespaces

  • Apptus
    • ESales
      • Connector
        • Report
        • Time
    • Util
      • Cache
  • PHP
  • Overview
  • Namespace
  • Class
  • Tree
  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: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 
<?php
namespace Apptus\ESales\Connector\Report;

use Apptus\ESales\Connector\Time\TimeInterval;

/**
 * Report for ads containing all ad attributes together with click through rate and conversion rate.
 *
 * This report can be seen in the Ads tab on the Reports page in eSales Manager and it is described
 * in the <i>Ads</i> section on <a href="http://zone.apptus.com">Apptus Zone</a> (http://zone.apptus.com).
 */
class AdList extends Report {

    /**
     * Creates an AdList from an XML document.
     *
     * @param string
     *            A string with the XML document to parse.
     * @param \DateTimeZone
     *            The time zone for the report.
     * @return AdList
     *            An AdList.
     * @throws FormatException if the XML document does not match the expected format.
     */
    public static function parse($data, \DateTimeZone $tz)  {
        $root = new \SimpleXMLElement($data);

        self::checkElem($root, 'function');
        self::checkElem($root->function, 'report');

        $report = $root->function->report;
        self::checkElem($report, 'time_interval');
        self::checkElem($report, 'sections');

        $interval = TimeInterval::parse($report->time_interval);
        $ads = array();

        foreach ($report->sections->section as $section) {
            if (!$section->getName() == 'section') {
                throw new FormatException('Unknown element in XML: ' . $section->getName());
            }

            self::checkElem($section, 'ad');
            $adElem = $section->ad;

            $conversion = self::parseDouble($section->conversion);

            $ctr = self::parseDouble($section->ctr);

            self::checkElem($adElem, 'ad_key');

            $adKey = $adElem->ad_key;
            $ad = new Ad($adKey);

            foreach ($adElem->children() as $attr) {
                $name = $attr->getName();

                if ($name !== 'ad_key') {
                    $value = $attr;
                    $ad->addAttribute($name, $value);
                }
            }

            array_push($ads, new AdListSection($ad, new Rate($conversion), new Rate($ctr)));
        }

        return new AdList($root, $ads, $interval, $tz);
    }

    /** @var AdListSection[] */
    private $sections;

    /**
     * Creates an AdList.
     *
     * Note that null is illegal for all input parameters.
     *
     * @param \SimpleXMLElement
     *            An XmlTree to be used if the {@see exportToXml()} method is called.
     * @param array
     *            A list of {@see AdListSection} elements. One for each ad in the report.
     * @param TimeInterval
     *            The time range for the data in this report.
     * @param \DateTimeZone
     *            The time zone for the data in this report.
     */
    public function __construct(\SimpleXMLElement $asXml, array $sections, TimeInterval $interval, \DateTimeZone $tz) {
        parent::__construct($interval, $asXml, $tz);

        $this->sections = $sections;
    }

    /**
     * @return AdListSection[]
     *            All sections in this report. One for each ad.
     */
    public function sections() {
        return $this->sections;
    }

    public function exportToExcel($file) {
        $w = new ExcelWriter($file);
        $w->cell('Ad List')->nextRow();
        $w->cell('Time interval');
        $ti = $this->timeInterval();
        $w->cell($this->isoDateTimeFormat($ti->start($this->tz)->toDateTime($this->tz)));
        $w->cell($this->isoDateTimeFormat($ti->end($this->tz)->toDateTime($this->tz)))->nextRow();

        foreach ($this->sections as $section) {
            $ad = $section->ad();
            $w->nextRow();
            $w->cell('Ad')->nextRow();
            $w->cell('ad_key')->cell($ad->key())->nextRow();

            foreach ($ad->attributes() as $a) {
                $w->cell($a->name())->cell($a->value())->nextRow();
            }

            $w->nextRow();

            $w->cell('conversion')->cell($section->conversion())->nextRow();
            $w->cell('ctr')->cell($section->ctr())->nextRow();

            $w->nextRow();
        }

        $w->flush();
        $w->close();
    }
}
Apptus ESales Connector PHP API documentation generated by ApiGen