Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 29
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
tao_install_services_CheckPHPExtensionService
0.00% covered (danger)
0.00%
0 / 29
0.00% covered (danger)
0.00%
0 / 5
210
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 execute
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 checkData
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 1
90
 buildComponent
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
6
 buildResult
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/*
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2002-2008 (original work) Public Research Centre Henri Tudor & University of Luxembourg
19 *                         (under the project TAO & TAO2);
20 *               2008-2010 (update and modification) Deutsche Institut für Internationale Pädagogische Forschung
21 *                         (under the project TAO-TRANSFER);
22 *               2009-2012 (update and modification) Public Research Centre Henri Tudor
23 *                         (under the project TAO-SUSTAIN & TAO-DEV);
24 *
25 */
26
27
28/**
29 * A Service implementation aiming at checking the existence and the availability of
30 * a target PHP Extension on the host system.
31 *
32 * Please refer to tao/install/api.php for more information about how to call this service.
33 * @access public
34 * @author Jerome Bogaerts, <jerome@taotesting.com>
35 * @package tao
36
37 */
38class tao_install_services_CheckPHPExtensionService extends tao_install_services_Service implements
39    tao_install_services_CheckService
40{
41    /**
42     * Creates a new instance of the service.
43     * @param tao_install_services_Data $data The input data to be handled by the service.
44     * @throws InvalidArgumentException If the input data structured is malformed or is missing data.
45     */
46    public function __construct(tao_install_services_Data $data)
47    {
48        parent::__construct($data);
49    }
50
51    /**
52     * Executes the main logic of the service.
53     * @return tao_install_services_Data The result of the service execution.
54     */
55    public function execute()
56    {
57        $ext = self::buildComponent($this->getData());
58        $report = $ext->check();
59        $this->setResult(self::buildResult($this->getData(), $report, $ext));
60    }
61
62    protected function checkData()
63    {
64        // Check data integrity.
65        $content = json_decode($this->getData()->getContent(), true);
66        if (!isset($content['type']) || empty($content['type']) || $content['type'] !== 'CheckPHPExtension') {
67            throw new InvalidArgumentException("Unexpected type: 'type' must be equal to 'CheckPHPExtension'.");
68        } elseif (!isset($content['value']) || empty($content['value'])) {
69            throw new InvalidArgumentException("Missing data: 'value' must be provided.");
70        } elseif (!isset($content['value']['id']) || empty($content['value']['id'])) {
71            throw new InvalidArgumentException("Missing data: 'id' must be provided");
72        } elseif (!isset($content['value']['name'])) {
73            throw new InvalidArgumentException("Missing data: 'name' must be provided.");
74        }
75    }
76
77    public static function buildComponent(tao_install_services_Data $data)
78    {
79        $content = json_decode($data->getContent(), true);
80        $extensionName = $content['value']['name'];
81        if (isset($content['value']['optional'])) {
82            $optional = $content['value']['optional'];
83        } else {
84            $optional = false;
85        }
86
87        $ext = common_configuration_ComponentFactory::buildPHPExtension($extensionName, null, null, $optional);
88
89        return $ext;
90    }
91
92    public static function buildResult(
93        tao_install_services_Data $data,
94        common_configuration_Report $report,
95        common_configuration_Component $component
96    ) {
97
98        $content = json_decode($data->getContent(), true);
99        $id = $content['value']['id'];
100
101        $data = ['type' => 'PHPExtensionReport',
102                      'value' => ['status' => $report->getStatusAsString(),
103                                       'message' => $report->getMessage(),
104                                       'optional' => $component->isOptional(),
105                                       'name' => $component->getName(),
106                                       'id' => $id]];
107
108        return new tao_install_services_Data(json_encode($data));
109    }
110}