2013-01-01 23:09:29 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorAWSConfigOptions
|
|
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
|
|
|
|
public function getName() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Amazon Web Services');
|
2013-01-01 23:09:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDescription() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Configure integration with AWS (EC2, SES, S3, etc).');
|
2013-01-01 23:09:29 +01:00
|
|
|
}
|
|
|
|
|
2015-02-02 19:17:25 +01:00
|
|
|
public function getFontIcon() {
|
|
|
|
return 'fa-server';
|
|
|
|
}
|
|
|
|
|
2015-02-09 22:10:56 +01:00
|
|
|
public function getGroup() {
|
|
|
|
return 'core';
|
|
|
|
}
|
|
|
|
|
2013-01-01 23:09:29 +01:00
|
|
|
public function getOptions() {
|
|
|
|
return array(
|
|
|
|
$this->newOption('amazon-ses.access-key', 'string', null)
|
2014-05-01 19:23:49 +02:00
|
|
|
->setLocked(true)
|
2013-01-01 23:09:29 +01:00
|
|
|
->setDescription(pht('Access key for Amazon SES.')),
|
|
|
|
$this->newOption('amazon-ses.secret-key', 'string', null)
|
2015-02-13 19:59:50 +01:00
|
|
|
->setHidden(true)
|
2013-01-01 23:09:29 +01:00
|
|
|
->setDescription(pht('Secret key for Amazon SES.')),
|
|
|
|
$this->newOption('amazon-s3.access-key', 'string', null)
|
2014-05-01 19:23:49 +02:00
|
|
|
->setLocked(true)
|
2013-01-01 23:09:29 +01:00
|
|
|
->setDescription(pht('Access key for Amazon S3.')),
|
|
|
|
$this->newOption('amazon-s3.secret-key', 'string', null)
|
2015-02-13 19:59:50 +01:00
|
|
|
->setHidden(true)
|
2013-01-01 23:09:29 +01:00
|
|
|
->setDescription(pht('Secret key for Amazon S3.')),
|
|
|
|
$this->newOption('amazon-s3.endpoint', 'string', null)
|
2014-05-01 19:23:49 +02:00
|
|
|
->setLocked(true)
|
2013-01-01 23:09:29 +01:00
|
|
|
->setDescription(
|
|
|
|
pht(
|
|
|
|
'Explicit S3 endpoint to use. Leave empty to have Phabricator '.
|
|
|
|
'select and endpoint. Normally, you do not need to set this.'))
|
2015-05-22 09:27:56 +02:00
|
|
|
->addExample(null, pht('Use default endpoint'))
|
|
|
|
->addExample('s3.amazon.com', pht('Use specific endpoint')),
|
2013-01-01 23:09:29 +01:00
|
|
|
$this->newOption('amazon-ec2.access-key', 'string', null)
|
2014-05-01 19:23:49 +02:00
|
|
|
->setLocked(true)
|
2013-01-01 23:09:29 +01:00
|
|
|
->setDescription(pht('Access key for Amazon EC2.')),
|
|
|
|
$this->newOption('amazon-ec2.secret-key', 'string', null)
|
2015-02-13 19:59:50 +01:00
|
|
|
->setHidden(true)
|
2013-01-01 23:09:29 +01:00
|
|
|
->setDescription(pht('Secret key for Amazon EC2.')),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|