Completed
Push — master ( 751a3d...b7ca33 )
by Sebastian
17:18 queued 15:56
created

Base   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 93
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 9
lcom 1
cbo 0
dl 0
loc 93
ccs 20
cts 20
cp 1
rs 10
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getCommand() 0 8 1
A getAcceptableExitCodes() 0 4 1
A getRootOption() 0 13 3
A useOption() 0 4 2
A __toString() 0 4 1
getGitCommand() 0 1 ?
1
<?php
2
/**
3
 * This file is part of SebastianFeldmann\Git.
4
 *
5
 * (c) Sebastian Feldmann <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
namespace SebastianFeldmann\Git\Command;
11
12
use SebastianFeldmann\Cli\Command;
13
14
/**
15
 * Class Base
16
 *
17
 * @package SebastianFeldmann\Git
18
 * @author  Sebastian Feldmann <[email protected]>
19
 * @link    https://github.com/sebastianfeldmann/git
20
 * @since   Class available since Release 0.9.0
21
 */
22
abstract class Base implements Command
23
{
24
    /**
25
     * Repository root directory.
26
     *
27
     * @var string
28
     */
29
    protected $repositoryRoot;
30
31
    /**
32
     * Base constructor.
33
     *
34
     * @param string $root
35
     */
36 36
    public function __construct(string $root = '')
37
    {
38 36
        $this->repositoryRoot = $root;
39 36
    }
40
41
    /**
42
     * Return cli command to execute.
43
     *
44
     * @return string
45
     */
46 20
    public function getCommand() : string
47
    {
48
        $command = 'git'
49 20
                 . $this->getRootOption()
50 20
                 . ' '
51 20
                 . $this->getGitCommand();
52 20
        return $command;
53
    }
54
55
    /**
56
     * Return list of acceptable exit codes.
57
     *
58
     * @return array
59
     */
60 1
    public function getAcceptableExitCodes() : array
61
    {
62 1
        return [0];
63
    }
64
65
    /**
66
     * Do we need the -C option.
67
     *
68
     * @return string
69
     */
70 20
    protected function getRootOption() : string
71
    {
72 20
        $option = '';
73
        // if root is set
74 20
        if (!empty($this->repositoryRoot)) {
75
            // and it's not the current working directory
76 1
            if (getcwd() !== $this->repositoryRoot) {
77 1
                $option =  ' -C ' . escapeshellarg($this->repositoryRoot);
78
            }
79
80
        }
81 20
        return $option;
82
    }
83
84
    /**
85
     * Should a option be used or not.
86
     *
87
     * @param  string $option
88
     * @param  bool   $switch
89
     * @return string
90
     */
91 3
    protected function useOption(string $option, bool $switch) : string
92
    {
93 3
        return ($switch ? ' ' . $option : '');
94
    }
95
96
97
    /**
98
     * Auto cast method.
99
     *
100
     * @return string
101
     */
102 4
    public function __toString() : string
103
    {
104 4
        return $this->getCommand();
105
    }
106
107
    /**
108
     * Return the command to execute.
109
     *
110
     * @return string
111
     * @throws \RuntimeException
112
     */
113
    protected abstract function getGitCommand() : string;
0 ignored issues
show
Coding Style introduced by
The abstract declaration must precede the visibility declaration
Loading history...
114
}
115