Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122166812
PhabricatorMailAmazonSNSAdapter.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jul 16, 07:22
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jul 18, 07:22 (2 d)
Engine
blob
Format
Raw Data
Handle
27443427
Attached To
rPH Phabricator
PhabricatorMailAmazonSNSAdapter.php
View Options
<?php
final
class
PhabricatorMailAmazonSNSAdapter
extends
PhabricatorMailAdapter
{
const
ADAPTERTYPE
=
'sns'
;
public
function
getSupportedMessageTypes
()
{
return
array
(
PhabricatorMailSMSMessage
::
MESSAGETYPE
,
);
}
protected
function
validateOptions
(
array
$options
)
{
PhutilTypeSpec
::
checkMap
(
$options
,
array
(
'access-key'
=>
'string'
,
'secret-key'
=>
'string'
,
'endpoint'
=>
'string'
,
'region'
=>
'string'
,
));
}
public
function
newDefaultOptions
()
{
return
array
(
'access-key'
=>
null
,
'secret-key'
=>
null
,
'endpoint'
=>
null
,
'region'
=>
null
,
);
}
public
function
sendMessage
(
PhabricatorMailExternalMessage
$message
)
{
$access_key
=
$this
->
getOption
(
'access-key'
);
$secret_key
=
$this
->
getOption
(
'secret-key'
);
$secret_key
=
new
PhutilOpaqueEnvelope
(
$secret_key
);
$endpoint
=
$this
->
getOption
(
'endpoint'
);
$region
=
$this
->
getOption
(
'region'
);
$to_number
=
$message
->
getToNumber
();
$text_body
=
$message
->
getTextBody
();
$params
=
array
(
'Version'
=>
'2010-03-31'
,
'Action'
=>
'Publish'
,
'PhoneNumber'
=>
$to_number
->
toE164
(),
'Message'
=>
$text_body
,
);
return
id
(
new
PhabricatorAmazonSNSFuture
())
->
setParameters
(
$params
)
->
setEndpoint
(
$endpoint
)
->
setAccessKey
(
$access_key
)
->
setSecretKey
(
$secret_key
)
->
setRegion
(
$region
)
->
setTimeout
(
60
)
->
resolve
();
}
}
Event Timeline
Log In to Comment