allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
This commit is contained in:
128
vendor/twilio/sdk/src/Twilio/Jwt/Grants/ChatGrant.php
vendored
Normal file
128
vendor/twilio/sdk/src/Twilio/Jwt/Grants/ChatGrant.php
vendored
Normal file
@@ -0,0 +1,128 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Twilio\Jwt\Grants;
|
||||
|
||||
|
||||
class ChatGrant implements Grant {
|
||||
private $serviceSid;
|
||||
private $endpointId;
|
||||
private $deploymentRoleSid;
|
||||
private $pushCredentialSid;
|
||||
|
||||
/**
|
||||
* Returns the service sid
|
||||
*
|
||||
* @return string the service sid
|
||||
*/
|
||||
public function getServiceSid(): string {
|
||||
return $this->serviceSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the service sid of this grant
|
||||
*
|
||||
* @param string $serviceSid service sid of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setServiceSid(string $serviceSid): self {
|
||||
$this->serviceSid = $serviceSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the endpoint id of the grant
|
||||
*
|
||||
* @return string the endpoint id
|
||||
*/
|
||||
public function getEndpointId(): string {
|
||||
return $this->endpointId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the endpoint id of the grant
|
||||
*
|
||||
* @param string $endpointId endpoint id of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setEndpointId(string $endpointId): self {
|
||||
$this->endpointId = $endpointId;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the deployment role sid of the grant
|
||||
*
|
||||
* @return string the deployment role sid
|
||||
*/
|
||||
public function getDeploymentRoleSid(): string {
|
||||
return $this->deploymentRoleSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the role sid of the grant
|
||||
*
|
||||
* @param string $deploymentRoleSid role sid of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setDeploymentRoleSid(string $deploymentRoleSid): self {
|
||||
$this->deploymentRoleSid = $deploymentRoleSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the push credential sid of the grant
|
||||
*
|
||||
* @return string the push credential sid
|
||||
*/
|
||||
public function getPushCredentialSid(): string {
|
||||
return $this->pushCredentialSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the credential sid of the grant
|
||||
*
|
||||
* @param string $pushCredentialSid push credential sid of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setPushCredentialSid(string $pushCredentialSid): self {
|
||||
$this->pushCredentialSid = $pushCredentialSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant type
|
||||
*
|
||||
* @return string type of the grant
|
||||
*/
|
||||
public function getGrantKey(): string {
|
||||
return 'chat';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant data
|
||||
*
|
||||
* @return array data of the grant
|
||||
*/
|
||||
public function getPayload(): array {
|
||||
$payload = [];
|
||||
if ($this->serviceSid) {
|
||||
$payload['service_sid'] = $this->serviceSid;
|
||||
}
|
||||
if ($this->endpointId) {
|
||||
$payload['endpoint_id'] = $this->endpointId;
|
||||
}
|
||||
if ($this->deploymentRoleSid) {
|
||||
$payload['deployment_role_sid'] = $this->deploymentRoleSid;
|
||||
}
|
||||
if ($this->pushCredentialSid) {
|
||||
$payload['push_credential_sid'] = $this->pushCredentialSid;
|
||||
}
|
||||
|
||||
return $payload;
|
||||
}
|
||||
}
|
||||
21
vendor/twilio/sdk/src/Twilio/Jwt/Grants/Grant.php
vendored
Normal file
21
vendor/twilio/sdk/src/Twilio/Jwt/Grants/Grant.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Twilio\Jwt\Grants;
|
||||
|
||||
|
||||
interface Grant {
|
||||
/**
|
||||
* Returns the grant type
|
||||
*
|
||||
* @return string type of the grant
|
||||
*/
|
||||
public function getGrantKey(): string;
|
||||
|
||||
/**
|
||||
* Returns the grant data
|
||||
*
|
||||
* @return array data of the grant
|
||||
*/
|
||||
public function getPayload(): array;
|
||||
}
|
||||
52
vendor/twilio/sdk/src/Twilio/Jwt/Grants/PlaybackGrant.php
vendored
Normal file
52
vendor/twilio/sdk/src/Twilio/Jwt/Grants/PlaybackGrant.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Twilio\Jwt\Grants;
|
||||
|
||||
|
||||
class PlaybackGrant implements Grant {
|
||||
|
||||
private $grant;
|
||||
|
||||
/**
|
||||
* Returns the grant
|
||||
*
|
||||
* @return array playback grant from the Twilio API
|
||||
*/
|
||||
public function getGrant(): array {
|
||||
return $this->grant;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the playback grant that will allow access to a stream
|
||||
*
|
||||
* @param array $grant playback grant from Twilio API
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setGrant(array $grant): self {
|
||||
$this->grant = $grant;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant type
|
||||
*
|
||||
* @return string type of the grant
|
||||
*/
|
||||
public function getGrantKey(): string {
|
||||
return 'player';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant data
|
||||
*
|
||||
* @return array data of the grant
|
||||
*/
|
||||
public function getPayload(): array {
|
||||
$payload = [];
|
||||
if ($this->grant) {
|
||||
$payload = $this->grant;
|
||||
}
|
||||
return $payload;
|
||||
}
|
||||
}
|
||||
126
vendor/twilio/sdk/src/Twilio/Jwt/Grants/SyncGrant.php
vendored
Normal file
126
vendor/twilio/sdk/src/Twilio/Jwt/Grants/SyncGrant.php
vendored
Normal file
@@ -0,0 +1,126 @@
|
||||
<?php
|
||||
|
||||
namespace Twilio\Jwt\Grants;
|
||||
|
||||
class SyncGrant implements Grant {
|
||||
private $serviceSid;
|
||||
private $endpointId;
|
||||
private $deploymentRoleSid;
|
||||
private $pushCredentialSid;
|
||||
|
||||
/**
|
||||
* Returns the service sid
|
||||
*
|
||||
* @return string the service sid
|
||||
*/
|
||||
public function getServiceSid(): string {
|
||||
return $this->serviceSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the service sid of this grant
|
||||
*
|
||||
* @param string $serviceSid service sid of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setServiceSid(string $serviceSid): self {
|
||||
$this->serviceSid = $serviceSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the endpoint id of the grant
|
||||
*
|
||||
* @return string the endpoint id
|
||||
*/
|
||||
public function getEndpointId(): string {
|
||||
return $this->endpointId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the endpoint id of the grant
|
||||
*
|
||||
* @param string $endpointId endpoint id of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setEndpointId(string $endpointId): self {
|
||||
$this->endpointId = $endpointId;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the deployment role sid of the grant
|
||||
*
|
||||
* @return string the deployment role sid
|
||||
*/
|
||||
public function getDeploymentRoleSid(): string {
|
||||
return $this->deploymentRoleSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the role sid of the grant
|
||||
*
|
||||
* @param string $deploymentRoleSid role sid of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setDeploymentRoleSid(string $deploymentRoleSid): self {
|
||||
$this->deploymentRoleSid = $deploymentRoleSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the push credential sid of the grant
|
||||
*
|
||||
* @return string the push credential sid
|
||||
*/
|
||||
public function getPushCredentialSid(): string {
|
||||
return $this->pushCredentialSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the credential sid of the grant
|
||||
*
|
||||
* @param string $pushCredentialSid push credential sid of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setPushCredentialSid(string $pushCredentialSid): self {
|
||||
$this->pushCredentialSid = $pushCredentialSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant type
|
||||
*
|
||||
* @return string type of the grant
|
||||
*/
|
||||
public function getGrantKey(): string {
|
||||
return 'data_sync';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant data
|
||||
*
|
||||
* @return array data of the grant
|
||||
*/
|
||||
public function getPayload(): array {
|
||||
$payload = [];
|
||||
if ($this->serviceSid) {
|
||||
$payload['service_sid'] = $this->serviceSid;
|
||||
}
|
||||
if ($this->endpointId) {
|
||||
$payload['endpoint_id'] = $this->endpointId;
|
||||
}
|
||||
if ($this->deploymentRoleSid) {
|
||||
$payload['deployment_role_sid'] = $this->deploymentRoleSid;
|
||||
}
|
||||
if ($this->pushCredentialSid) {
|
||||
$payload['push_credential_sid'] = $this->pushCredentialSid;
|
||||
}
|
||||
|
||||
return $payload;
|
||||
}
|
||||
}
|
||||
101
vendor/twilio/sdk/src/Twilio/Jwt/Grants/TaskRouterGrant.php
vendored
Normal file
101
vendor/twilio/sdk/src/Twilio/Jwt/Grants/TaskRouterGrant.php
vendored
Normal file
@@ -0,0 +1,101 @@
|
||||
<?php
|
||||
|
||||
namespace Twilio\Jwt\Grants;
|
||||
|
||||
class TaskRouterGrant implements Grant {
|
||||
private $workspaceSid;
|
||||
private $workerSid;
|
||||
private $role;
|
||||
|
||||
/**
|
||||
* Returns the workspace sid
|
||||
*
|
||||
* @return string the workspace sid
|
||||
*/
|
||||
public function getWorkspaceSid(): string {
|
||||
return $this->workspaceSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the workspace sid of this grant
|
||||
*
|
||||
* @param string $workspaceSid workspace sid of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setWorkspaceSid(string $workspaceSid): self {
|
||||
$this->workspaceSid = $workspaceSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the worker sid
|
||||
*
|
||||
* @return string the worker sid
|
||||
*/
|
||||
public function getWorkerSid(): string {
|
||||
return $this->workerSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the worker sid of this grant
|
||||
*
|
||||
* @param string $workerSid worker sid of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setWorkerSid(string $workerSid): self {
|
||||
$this->workerSid = $workerSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the role
|
||||
*
|
||||
* @return string the role
|
||||
*/
|
||||
public function getRole(): string {
|
||||
return $this->role;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the role of this grant
|
||||
*
|
||||
* @param string $role role of the grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setRole(string $role): self {
|
||||
$this->role = $role;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant type
|
||||
*
|
||||
* @return string type of the grant
|
||||
*/
|
||||
public function getGrantKey(): string {
|
||||
return 'task_router';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant data
|
||||
*
|
||||
* @return array data of the grant
|
||||
*/
|
||||
public function getPayload(): array {
|
||||
$payload = [];
|
||||
if ($this->workspaceSid) {
|
||||
$payload['workspace_sid'] = $this->workspaceSid;
|
||||
}
|
||||
if ($this->workerSid) {
|
||||
$payload['worker_sid'] = $this->workerSid;
|
||||
}
|
||||
if ($this->role) {
|
||||
$payload['role'] = $this->role;
|
||||
}
|
||||
|
||||
return $payload;
|
||||
}
|
||||
}
|
||||
52
vendor/twilio/sdk/src/Twilio/Jwt/Grants/VideoGrant.php
vendored
Normal file
52
vendor/twilio/sdk/src/Twilio/Jwt/Grants/VideoGrant.php
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Twilio\Jwt\Grants;
|
||||
|
||||
|
||||
class VideoGrant implements Grant {
|
||||
|
||||
private $room;
|
||||
|
||||
/**
|
||||
* Returns the room
|
||||
*
|
||||
* @return string room name or sid set in this grant
|
||||
*/
|
||||
public function getRoom(): string {
|
||||
return $this->room;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the room to allow access to in the grant
|
||||
*
|
||||
* @param string $roomSidOrName room sid or name
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setRoom(string $roomSidOrName): self {
|
||||
$this->room = $roomSidOrName;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant type
|
||||
*
|
||||
* @return string type of the grant
|
||||
*/
|
||||
public function getGrantKey(): string {
|
||||
return 'video';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant data
|
||||
*
|
||||
* @return array data of the grant
|
||||
*/
|
||||
public function getPayload(): array {
|
||||
$payload = [];
|
||||
if ($this->room) {
|
||||
$payload['room'] = $this->room;
|
||||
}
|
||||
return $payload;
|
||||
}
|
||||
}
|
||||
165
vendor/twilio/sdk/src/Twilio/Jwt/Grants/VoiceGrant.php
vendored
Normal file
165
vendor/twilio/sdk/src/Twilio/Jwt/Grants/VoiceGrant.php
vendored
Normal file
@@ -0,0 +1,165 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Twilio\Jwt\Grants;
|
||||
|
||||
|
||||
class VoiceGrant implements Grant {
|
||||
|
||||
private $incomingAllow;
|
||||
private $outgoingApplicationSid;
|
||||
private $outgoingApplicationParams;
|
||||
private $pushCredentialSid;
|
||||
private $endpointId;
|
||||
|
||||
/**
|
||||
* Returns whether incoming is allowed
|
||||
*
|
||||
* @return bool whether incoming is allowed
|
||||
*/
|
||||
public function getIncomingAllow(): bool {
|
||||
return $this->incomingAllow;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set whether incoming is allowed
|
||||
*
|
||||
* @param bool $incomingAllow whether incoming is allowed
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setIncomingAllow(bool $incomingAllow): self {
|
||||
$this->incomingAllow = $incomingAllow;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the outgoing application sid
|
||||
*
|
||||
* @return string the outgoing application sid
|
||||
*/
|
||||
public function getOutgoingApplicationSid(): string {
|
||||
return $this->outgoingApplicationSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the outgoing application sid of the grant
|
||||
*
|
||||
* @param string $outgoingApplicationSid outgoing application sid of grant
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setOutgoingApplicationSid(string $outgoingApplicationSid): self {
|
||||
$this->outgoingApplicationSid = $outgoingApplicationSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the outgoing application params
|
||||
*
|
||||
* @return array the outgoing application params
|
||||
*/
|
||||
public function getOutgoingApplicationParams(): array {
|
||||
return $this->outgoingApplicationParams;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the outgoing application of the the grant
|
||||
*
|
||||
* @param string $sid outgoing application sid of the grant
|
||||
* @param array $params params to pass the the application
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setOutgoingApplication(string $sid, array $params): self {
|
||||
$this->outgoingApplicationSid = $sid;
|
||||
$this->outgoingApplicationParams = $params;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the push credential sid
|
||||
*
|
||||
* @return string the push credential sid
|
||||
*/
|
||||
public function getPushCredentialSid(): string {
|
||||
return $this->pushCredentialSid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the push credential sid
|
||||
*
|
||||
* @param string $pushCredentialSid
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setPushCredentialSid(string $pushCredentialSid): self {
|
||||
$this->pushCredentialSid = $pushCredentialSid;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the endpoint id
|
||||
*
|
||||
* @return string the endpoint id
|
||||
*/
|
||||
public function getEndpointId(): string {
|
||||
return $this->endpointId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the endpoint id
|
||||
*
|
||||
* @param string $endpointId endpoint id
|
||||
*
|
||||
* @return $this updated grant
|
||||
*/
|
||||
public function setEndpointId(string $endpointId): self {
|
||||
$this->endpointId = $endpointId;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant type
|
||||
*
|
||||
* @return string type of the grant
|
||||
*/
|
||||
public function getGrantKey(): string {
|
||||
return 'voice';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the grant data
|
||||
*
|
||||
* @return array data of the grant
|
||||
*/
|
||||
public function getPayload(): array {
|
||||
$payload = [];
|
||||
if ($this->incomingAllow === true) {
|
||||
$incoming = [];
|
||||
$incoming['allow'] = true;
|
||||
$payload['incoming'] = $incoming;
|
||||
}
|
||||
|
||||
if ($this->outgoingApplicationSid) {
|
||||
$outgoing = [];
|
||||
$outgoing['application_sid'] = $this->outgoingApplicationSid;
|
||||
|
||||
if ($this->outgoingApplicationParams) {
|
||||
$outgoing['params'] = $this->outgoingApplicationParams;
|
||||
}
|
||||
|
||||
$payload['outgoing'] = $outgoing;
|
||||
}
|
||||
|
||||
if ($this->pushCredentialSid) {
|
||||
$payload['push_credential_sid'] = $this->pushCredentialSid;
|
||||
}
|
||||
|
||||
if ($this->endpointId) {
|
||||
$payload['endpoint_id'] = $this->endpointId;
|
||||
}
|
||||
|
||||
return $payload;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user