nextcloud/apps/files_external/lib/Lib/Auth/AmazonS3/AccessKey.php
Josh 00100427be
feat(files_external/s3): Adjust auth meth/parameter field names
Signed-off-by: Josh <josh.t.richards@gmail.com>
2026-03-25 16:10:35 -04:00

33 lines
916 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Files_External\Lib\Auth\AmazonS3;
use OCA\Files_External\Lib\Auth\AuthMechanism;
use OCA\Files_External\Lib\DefinitionParameter;
use OCP\IL10N;
/**
* Amazon S3 access key authentication
*/
class AccessKey extends AuthMechanism {
public const SCHEME_AMAZONS3_ACCESSKEY = 'amazons3_accesskey';
public function __construct(IL10N $l) {
$this
->setIdentifier('amazons3::accesskey')
->setScheme(self::SCHEME_AMAZONS3_ACCESSKEY)
->setText($l->t('Static credentials'))
->addParameters([
new DefinitionParameter('key', $l->t('Access key ID')),
(new DefinitionParameter('secret', $l->t('Secret access key')))
->setType(DefinitionParameter::VALUE_PASSWORD),
]);
}
}