php-api-clients /
github
This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php declare(strict_types=1); |
||
| 2 | |||
| 3 | namespace ApiClients\Client\Github; |
||
| 4 | |||
| 5 | use ApiClients\Client\Github\CommandBus\Command; |
||
| 6 | use ApiClients\Foundation\ClientInterface; |
||
| 7 | use ApiClients\Foundation\Factory; |
||
| 8 | use ApiClients\Foundation\Options; |
||
| 9 | use ApiClients\Foundation\Resource\ResourceInterface; |
||
| 10 | use function ApiClients\Tools\Rx\unwrapObservableFromPromise; |
||
| 11 | use React\EventLoop\LoopInterface; |
||
| 12 | use React\Promise\CancellablePromiseInterface; |
||
| 13 | use React\Promise\PromiseInterface; |
||
| 14 | use React\Stream\ReadableStreamInterface; |
||
| 15 | use Rx\Observable; |
||
| 16 | use Rx\Scheduler; |
||
| 17 | |||
| 18 | final class AsyncClient implements AsyncClientInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var ClientInterface |
||
| 22 | */ |
||
| 23 | private $client; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var RateLimitState |
||
| 27 | */ |
||
| 28 | private $rateLimitState; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param ClientInterface $client |
||
| 32 | * @param RateLimitState $rateLimitState |
||
| 33 | */ |
||
| 34 | 2 | private function __construct(ClientInterface $client, RateLimitState $rateLimitState) |
|
| 35 | { |
||
| 36 | 2 | $this->client = $client; |
|
| 37 | 2 | $this->rateLimitState = $rateLimitState; |
|
| 38 | 2 | } |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @param LoopInterface $loop |
||
| 42 | * @param AuthenticationInterface $auth |
||
| 43 | * @param array $options |
||
| 44 | * @return AsyncClient |
||
| 45 | */ |
||
| 46 | 1 | public static function create( |
|
| 47 | LoopInterface $loop, |
||
| 48 | AuthenticationInterface $auth, |
||
| 49 | array $options = [] |
||
| 50 | ): self { |
||
| 51 | 1 | $options = ApiSettings::getOptions($auth, $options, 'Async'); |
|
| 52 | 1 | $rateLimitState = new RateLimitState(); |
|
| 53 | 1 | $options[Options::CONTAINER_DEFINITIONS][RateLimitState::class] = $rateLimitState; |
|
| 54 | 1 | $client = Factory::create($loop, $options); |
|
| 55 | |||
| 56 | try { |
||
| 57 | 1 | Scheduler::setAsyncFactory(function () use ($loop) { |
|
| 58 | return new Scheduler\EventLoopScheduler($loop); |
||
| 59 | 1 | }); |
|
| 60 | } catch (\Throwable $t) { |
||
|
0 ignored issues
–
show
Coding Style
Comprehensibility
introduced
by
Loading history...
|
|||
| 61 | } |
||
| 62 | |||
| 63 | 1 | return new self($client, $rateLimitState); |
|
| 64 | } |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @internal |
||
| 68 | * @param ClientInterface $client |
||
| 69 | * @param RateLimitState $rateLimitState |
||
| 70 | * @return AsyncClient |
||
| 71 | */ |
||
| 72 | 1 | public static function createFromClient(ClientInterface $client, RateLimitState $rateLimitState): self |
|
| 73 | { |
||
| 74 | 1 | return new self($client, $rateLimitState); |
|
| 75 | } |
||
| 76 | |||
| 77 | public function hydrate(string $resource): CancellablePromiseInterface |
||
| 78 | { |
||
| 79 | return $this->client->hydrate($resource); |
||
| 80 | } |
||
| 81 | |||
| 82 | public function extract(ResourceInterface $resource): CancellablePromiseInterface |
||
| 83 | { |
||
| 84 | return $this->client->extract($resource); |
||
| 85 | } |
||
| 86 | |||
| 87 | public function meta(): PromiseInterface |
||
| 88 | { |
||
| 89 | return $this->client->handle(new Command\MetaCommand()); |
||
| 90 | } |
||
| 91 | |||
| 92 | /** |
||
| 93 | * @param string $user |
||
| 94 | * @return PromiseInterface |
||
| 95 | */ |
||
| 96 | public function user(string $user): PromiseInterface |
||
| 97 | { |
||
| 98 | return $this->client->handle(new Command\UserCommand($user)); |
||
| 99 | } |
||
| 100 | |||
| 101 | /** |
||
| 102 | * @param string $organization |
||
| 103 | * @return PromiseInterface |
||
| 104 | */ |
||
| 105 | public function organization(string $organization): PromiseInterface |
||
| 106 | { |
||
| 107 | return $this->client->handle(new Command\OrganizationCommand($organization)); |
||
| 108 | } |
||
| 109 | |||
| 110 | /** |
||
| 111 | * @return PromiseInterface |
||
| 112 | */ |
||
| 113 | public function whoami(): PromiseInterface |
||
| 114 | { |
||
| 115 | return $this->client->handle(new Command\UserCommand()); |
||
| 116 | } |
||
| 117 | |||
| 118 | /** |
||
| 119 | * @return Observable |
||
| 120 | */ |
||
| 121 | public function emojis(): Observable |
||
| 122 | { |
||
| 123 | return unwrapObservableFromPromise($this->client->handle(new Command\EmojisCommand())); |
||
| 124 | } |
||
| 125 | |||
| 126 | public function myOrganizations(): Observable |
||
| 127 | { |
||
| 128 | return unwrapObservableFromPromise($this->client->handle(new Command\MyOrganizationsCommand())); |
||
| 129 | } |
||
| 130 | |||
| 131 | public function licenses(): Observable |
||
| 132 | { |
||
| 133 | return unwrapObservableFromPromise($this->client->handle(new Command\LicensesCommand())); |
||
| 134 | } |
||
| 135 | |||
| 136 | public function watching(): Observable |
||
| 137 | { |
||
| 138 | return unwrapObservableFromPromise($this->client->handle(new Command\WatchingCommand())); |
||
| 139 | } |
||
| 140 | |||
| 141 | /** |
||
| 142 | * @return RateLimitState |
||
| 143 | */ |
||
| 144 | 2 | public function getRateLimitState(): RateLimitState |
|
| 145 | { |
||
| 146 | 2 | return clone $this->rateLimitState; |
|
| 147 | } |
||
| 148 | |||
| 149 | public function rateLimit(): PromiseInterface |
||
| 150 | { |
||
| 151 | return $this->client->handle(new Command\RateLimitCommand()); |
||
| 152 | } |
||
| 153 | |||
| 154 | public function app(): PromiseInterface |
||
| 155 | { |
||
| 156 | return $this->client->handle(new Command\AppCommand()); |
||
| 157 | } |
||
| 158 | |||
| 159 | public function renderMarkdown( |
||
| 160 | ReadableStreamInterface $stream, |
||
| 161 | string $mode = 'markdown', |
||
| 162 | string $context = '' |
||
| 163 | ): PromiseInterface { |
||
| 164 | $stream->pause(); |
||
| 165 | |||
| 166 | return $this->client->handle(new Command\RenderMarkdownCommand( |
||
| 167 | $stream, |
||
| 168 | $mode, |
||
| 169 | $context |
||
| 170 | )); |
||
| 171 | } |
||
| 172 | } |
||
| 173 |