GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( 172d62...36ec89 )
by Stuart
05:30
created

Dsbuild_Adapter   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 74
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 5
lcom 1
cbo 1
dl 0
loc 74
rs 10
c 1
b 1
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getExecuteDir() 0 4 1
A getExecutePath() 0 4 1
A setExecutePath() 0 6 1
A getAsConfig() 0 14 1
1
<?php
2
3
/**
4
 * Copyright (c) 2011-present Mediasift Ltd
5
 * Copyright (c) 2015-present Ganbaro Digital Ltd
6
 * All rights reserved.
7
 *
8
 * Redistribution and use in source and binary forms, with or without
9
 * modification, are permitted provided that the following conditions
10
 * are met:
11
 *
12
 *   * Redistributions of source code must retain the above copyright
13
 *     notice, this list of conditions and the following disclaimer.
14
 *
15
 *   * Redistributions in binary form must reproduce the above copyright
16
 *     notice, this list of conditions and the following disclaimer in
17
 *     the documentation and/or other materials provided with the
18
 *     distribution.
19
 *
20
 *   * Neither the names of the copyright holders nor the names of his
21
 *     contributors may be used to endorse or promote products derived
22
 *     from this software without specific prior written permission.
23
 *
24
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35
 * POSSIBILITY OF SUCH DAMAGE.
36
 *
37
 * @category  Libraries
38
 * @package   Storyplayer/TestEnvironments
39
 * @author    Stuart Herbert <[email protected]>
40
 * @copyright 2011-present Mediasift Ltd www.datasift.com
41
 * @copyright 2015-present Ganbaro Digital Ltd www.ganbarodigital.com
42
 * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
43
 * @link      http://datasift.github.io/storyplayer
44
 */
45
46
namespace Storyplayer\SPv3\TestEnvironments;
47
48
use DataSift\Stone\ObjectLib\BaseObject;
49
50
/**
51
 * support for building a test environment using dsbuild
52
 *
53
 * @category  Libraries
54
 * @package   Storyplayer/TestEnvironments
55
 * @author    Stuart Herbert <[email protected]>
56
 * @copyright 2011-present Mediasift Ltd www.datasift.com
57
 * @copyright 2015-present Ganbaro Digital Ltd www.ganbarodigital.com
58
 * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
59
 * @link      http://datasift.github.io/storyplayer
60
 */
61
62
class Dsbuild_Adapter implements ProvisioningAdapter
63
{
64
	public function __construct()
65
	{
66
		$this->setExecutePath(getcwd() . DIRECTORY_SEPARATOR . "dsbuild.sh");
67
	}
68
69
	// ==================================================================
70
	//
71
	// Support for executing the script
72
	//
73
	// ------------------------------------------------------------------
74
75
	/**
76
	 * where is the script that we are going to execute?
77
	 *
78
	 * @var string
79
	 */
80
	protected $executePath;
81
82
	/**
83
	 * which folder are we executing things in?
84
	 *
85
	 * @return string
86
	 */
87
	public function getExecuteDir()
88
	{
89
		return dirname($this->executePath);
90
	}
91
92
	/**
93
	 * where is the script that we are going to execute?
94
	 *
95
	 * @return string
96
	 */
97
	public function getExecutePath()
98
	{
99
		return $this->executePath;
100
	}
101
102
	/**
103
	 * tell me which script to execute
104
	 *
105
	 * @param string $path
106
	 *        path to the dsbuild script
107
	 */
108
	public function setExecutePath($path)
109
	{
110
		$this->executePath = $path;
111
112
		return $this;
113
	}
114
115
	// ==================================================================
116
	//
117
	// SPv3.0-style config support
118
	//
119
	// ------------------------------------------------------------------
120
121
	public function getAsConfig()
122
	{
123
		// our return value
124
		$retval = new BaseObject;
125
126
		// this is who we are
127
		$retval->engine = "dsbuild";
128
129
		// this is what needs running
130
		$retval->execute = $this->getExecutePath();
131
132
		// all done
133
		return $retval;
134
	}
135
}
136