-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathWorkspaces.php
140 lines (123 loc) · 3.02 KB
/
Workspaces.php
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
132
133
134
135
136
137
138
139
140
<?php
declare(strict_types=1);
/*
* This file is part of the Bitbucket API Client.
*
* (c) Graham Campbell <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Bitbucket\Api;
use Bitbucket\Api\Workspaces\Hooks;
use Bitbucket\Api\Workspaces\Members;
use Bitbucket\Api\Workspaces\Permissions;
use Bitbucket\Api\Workspaces\PipelinesConfig;
use Bitbucket\Api\Workspaces\Projects;
use Bitbucket\Api\Workspaces\PullRequests as WorkspacesPullRequests;
use Bitbucket\Client;
use Bitbucket\HttpClient\Util\UriBuilder;
/**
* The workspaces API class.
*
* @author Graham Campbell <[email protected]>
*/
class Workspaces extends AbstractApi
{
/**
* The workspace.
*
* @var string
*/
protected $workspace;
/**
* Create a new API instance.
*
* @param Client $client
* @param string $workspace
*
* @return void
*/
public function __construct(Client $client, string $workspace)
{
parent::__construct($client);
$this->workspace = $workspace;
}
/**
* @param array $params
*
* @throws \Http\Client\Exception
*
* @return array
*/
public function show(array $params = [])
{
$uri = $this->buildWorkspacesUri();
return $this->get($uri, $params);
}
/**
* @param array $params
*
* @throws \Http\Client\Exception
*
* @return array
*/
public function codeSearch(array $params = [])
{
$uri = $this->buildWorkspacesUri('search', 'code');
return $this->get($uri, $params);
}
/**
* @return \Bitbucket\Api\Workspaces\Hooks
*/
public function hooks()
{
return new Hooks($this->getClient(), $this->workspace);
}
/**
* @return \Bitbucket\Api\Workspaces\Members
*/
public function members()
{
return new Members($this->getClient(), $this->workspace);
}
/**
* @return \Bitbucket\Api\Workspaces\Permissions
*/
public function permissions()
{
return new Permissions($this->getClient(), $this->workspace);
}
/**
* @return \Bitbucket\Api\Workspaces\PipelinesConfig
*/
public function pipelinesConfig()
{
return new PipelinesConfig($this->getClient(), $this->workspace);
}
/**
* @return \Bitbucket\Api\Workspaces\Projects
*/
public function projects()
{
return new Projects($this->getClient(), $this->workspace);
}
/**
* @return \Bitbucket\Api\Workspaces\PullRequests
*/
public function pullRequests()
{
return new WorkspacesPullRequests($this->getClient(), $this->workspace);
}
/**
* Build the workspaces URI from the given parts.
*
* @param string ...$parts
*
* @return string
*/
protected function buildWorkspacesUri(string ...$parts)
{
return UriBuilder::build('workspaces', $this->workspace, ...$parts);
}
}