@@ -31,49 +31,49 @@ |
||
31 | 31 | use Sabre\DAV\INode; |
32 | 32 | |
33 | 33 | class RestoreFolder implements ICollection, IMoveTarget { |
34 | - public function createFile($name, $data = null) { |
|
35 | - throw new Forbidden(); |
|
36 | - } |
|
34 | + public function createFile($name, $data = null) { |
|
35 | + throw new Forbidden(); |
|
36 | + } |
|
37 | 37 | |
38 | - public function createDirectory($name) { |
|
39 | - throw new Forbidden(); |
|
40 | - } |
|
38 | + public function createDirectory($name) { |
|
39 | + throw new Forbidden(); |
|
40 | + } |
|
41 | 41 | |
42 | - public function getChild($name) { |
|
43 | - return null; |
|
44 | - } |
|
42 | + public function getChild($name) { |
|
43 | + return null; |
|
44 | + } |
|
45 | 45 | |
46 | - public function delete() { |
|
47 | - throw new Forbidden(); |
|
48 | - } |
|
46 | + public function delete() { |
|
47 | + throw new Forbidden(); |
|
48 | + } |
|
49 | 49 | |
50 | - public function getName() { |
|
51 | - return 'restore'; |
|
52 | - } |
|
50 | + public function getName() { |
|
51 | + return 'restore'; |
|
52 | + } |
|
53 | 53 | |
54 | - public function setName($name) { |
|
55 | - throw new Forbidden(); |
|
56 | - } |
|
54 | + public function setName($name) { |
|
55 | + throw new Forbidden(); |
|
56 | + } |
|
57 | 57 | |
58 | - public function getLastModified(): int { |
|
59 | - return 0; |
|
60 | - } |
|
58 | + public function getLastModified(): int { |
|
59 | + return 0; |
|
60 | + } |
|
61 | 61 | |
62 | - public function getChildren(): array { |
|
63 | - return []; |
|
64 | - } |
|
62 | + public function getChildren(): array { |
|
63 | + return []; |
|
64 | + } |
|
65 | 65 | |
66 | - public function childExists($name): bool { |
|
67 | - return false; |
|
68 | - } |
|
66 | + public function childExists($name): bool { |
|
67 | + return false; |
|
68 | + } |
|
69 | 69 | |
70 | - public function moveInto($targetName, $sourcePath, INode $sourceNode): bool { |
|
71 | - if (!($sourceNode instanceof VersionFile)) { |
|
72 | - return false; |
|
73 | - } |
|
70 | + public function moveInto($targetName, $sourcePath, INode $sourceNode): bool { |
|
71 | + if (!($sourceNode instanceof VersionFile)) { |
|
72 | + return false; |
|
73 | + } |
|
74 | 74 | |
75 | - $sourceNode->rollBack(); |
|
76 | - return true; |
|
77 | - } |
|
75 | + $sourceNode->rollBack(); |
|
76 | + return true; |
|
77 | + } |
|
78 | 78 | |
79 | 79 | } |
@@ -33,26 +33,26 @@ |
||
33 | 33 | */ |
34 | 34 | class Config { |
35 | 35 | |
36 | - /** @var ICloudFederationProviderManager */ |
|
37 | - private $cloudFederationProviderManager; |
|
36 | + /** @var ICloudFederationProviderManager */ |
|
37 | + private $cloudFederationProviderManager; |
|
38 | 38 | |
39 | - public function __construct(ICloudFederationProviderManager $cloudFederationProviderManager) { |
|
40 | - $this->cloudFederationProviderManager = $cloudFederationProviderManager; |
|
41 | - } |
|
39 | + public function __construct(ICloudFederationProviderManager $cloudFederationProviderManager) { |
|
40 | + $this->cloudFederationProviderManager = $cloudFederationProviderManager; |
|
41 | + } |
|
42 | 42 | |
43 | - /** |
|
44 | - * get a list of supported share types |
|
45 | - * |
|
46 | - * @param string $resourceType |
|
47 | - * @return array |
|
48 | - */ |
|
49 | - public function getSupportedShareTypes($resourceType) { |
|
50 | - try { |
|
51 | - $provider = $this->cloudFederationProviderManager->getCloudFederationProvider($resourceType); |
|
52 | - return $provider->getSupportedShareTypes(); |
|
53 | - } catch (\Exception $e) { |
|
54 | - return []; |
|
55 | - } |
|
56 | - } |
|
43 | + /** |
|
44 | + * get a list of supported share types |
|
45 | + * |
|
46 | + * @param string $resourceType |
|
47 | + * @return array |
|
48 | + */ |
|
49 | + public function getSupportedShareTypes($resourceType) { |
|
50 | + try { |
|
51 | + $provider = $this->cloudFederationProviderManager->getCloudFederationProvider($resourceType); |
|
52 | + return $provider->getSupportedShareTypes(); |
|
53 | + } catch (\Exception $e) { |
|
54 | + return []; |
|
55 | + } |
|
56 | + } |
|
57 | 57 | |
58 | 58 | } |
@@ -29,29 +29,29 @@ |
||
29 | 29 | |
30 | 30 | class Admin implements ISettings { |
31 | 31 | |
32 | - /** |
|
33 | - * @return TemplateResponse |
|
34 | - */ |
|
35 | - public function getForm() { |
|
36 | - return new TemplateResponse('systemtags', 'admin', [], ''); |
|
37 | - } |
|
32 | + /** |
|
33 | + * @return TemplateResponse |
|
34 | + */ |
|
35 | + public function getForm() { |
|
36 | + return new TemplateResponse('systemtags', 'admin', [], ''); |
|
37 | + } |
|
38 | 38 | |
39 | - /** |
|
40 | - * @return string the section ID, e.g. 'sharing' |
|
41 | - */ |
|
42 | - public function getSection() { |
|
43 | - return 'server'; |
|
44 | - } |
|
39 | + /** |
|
40 | + * @return string the section ID, e.g. 'sharing' |
|
41 | + */ |
|
42 | + public function getSection() { |
|
43 | + return 'server'; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * @return int whether the form should be rather on the top or bottom of |
|
48 | - * the admin section. The forms are arranged in ascending order of the |
|
49 | - * priority values. It is required to return a value between 0 and 100. |
|
50 | - * |
|
51 | - * E.g.: 70 |
|
52 | - */ |
|
53 | - public function getPriority() { |
|
54 | - return 70; |
|
55 | - } |
|
46 | + /** |
|
47 | + * @return int whether the form should be rather on the top or bottom of |
|
48 | + * the admin section. The forms are arranged in ascending order of the |
|
49 | + * priority values. It is required to return a value between 0 and 100. |
|
50 | + * |
|
51 | + * E.g.: 70 |
|
52 | + */ |
|
53 | + public function getPriority() { |
|
54 | + return 70; |
|
55 | + } |
|
56 | 56 | |
57 | 57 | } |
@@ -29,45 +29,45 @@ |
||
29 | 29 | use OCP\Settings\IIconSection; |
30 | 30 | |
31 | 31 | class Section implements IIconSection { |
32 | - /** @var IL10N */ |
|
33 | - private $l; |
|
34 | - /** @var IURLGenerator */ |
|
35 | - private $url; |
|
32 | + /** @var IL10N */ |
|
33 | + private $l; |
|
34 | + /** @var IURLGenerator */ |
|
35 | + private $url; |
|
36 | 36 | |
37 | - /** |
|
38 | - * @param IURLGenerator $url |
|
39 | - * @param IL10N $l |
|
40 | - */ |
|
41 | - public function __construct(IURLGenerator $url, IL10N $l) { |
|
42 | - $this->url = $url; |
|
43 | - $this->l = $l; |
|
44 | - } |
|
37 | + /** |
|
38 | + * @param IURLGenerator $url |
|
39 | + * @param IL10N $l |
|
40 | + */ |
|
41 | + public function __construct(IURLGenerator $url, IL10N $l) { |
|
42 | + $this->url = $url; |
|
43 | + $this->l = $l; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * {@inheritdoc} |
|
48 | - */ |
|
49 | - public function getID() { |
|
50 | - return 'workflow'; |
|
51 | - } |
|
46 | + /** |
|
47 | + * {@inheritdoc} |
|
48 | + */ |
|
49 | + public function getID() { |
|
50 | + return 'workflow'; |
|
51 | + } |
|
52 | 52 | |
53 | - /** |
|
54 | - * {@inheritdoc} |
|
55 | - */ |
|
56 | - public function getName() { |
|
57 | - return $this->l->t('Flow'); |
|
58 | - } |
|
53 | + /** |
|
54 | + * {@inheritdoc} |
|
55 | + */ |
|
56 | + public function getName() { |
|
57 | + return $this->l->t('Flow'); |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * {@inheritdoc} |
|
62 | - */ |
|
63 | - public function getPriority() { |
|
64 | - return 55; |
|
65 | - } |
|
60 | + /** |
|
61 | + * {@inheritdoc} |
|
62 | + */ |
|
63 | + public function getPriority() { |
|
64 | + return 55; |
|
65 | + } |
|
66 | 66 | |
67 | - /** |
|
68 | - * {@inheritdoc} |
|
69 | - */ |
|
70 | - public function getIcon() { |
|
71 | - return $this->url->imagePath(Application::APP_ID, 'app-dark.svg'); |
|
72 | - } |
|
67 | + /** |
|
68 | + * {@inheritdoc} |
|
69 | + */ |
|
70 | + public function getIcon() { |
|
71 | + return $this->url->imagePath(Application::APP_ID, 'app-dark.svg'); |
|
72 | + } |
|
73 | 73 | } |
@@ -32,10 +32,10 @@ |
||
32 | 32 | * @since 18.0.0 |
33 | 33 | */ |
34 | 34 | interface IUrl { |
35 | - /** |
|
36 | - * returns a URL that is related to the entity, e.g. the link to a share |
|
37 | - * |
|
38 | - * @since 18.0.0 |
|
39 | - */ |
|
40 | - public function getUrl(): string; |
|
35 | + /** |
|
36 | + * returns a URL that is related to the entity, e.g. the link to a share |
|
37 | + * |
|
38 | + * @since 18.0.0 |
|
39 | + */ |
|
40 | + public function getUrl(): string; |
|
41 | 41 | } |
@@ -32,10 +32,10 @@ |
||
32 | 32 | * @since 18.0.0 |
33 | 33 | */ |
34 | 34 | interface IDisplayName { |
35 | - /** |
|
36 | - * returns the end user facing name of the object related to the entity |
|
37 | - * |
|
38 | - * @since 18.0.0 |
|
39 | - */ |
|
40 | - public function getDisplayName(): string; |
|
35 | + /** |
|
36 | + * returns the end user facing name of the object related to the entity |
|
37 | + * |
|
38 | + * @since 18.0.0 |
|
39 | + */ |
|
40 | + public function getDisplayName(): string; |
|
41 | 41 | } |
@@ -32,11 +32,11 @@ |
||
32 | 32 | * @since 18.0.0 |
33 | 33 | */ |
34 | 34 | interface IIcon { |
35 | - /** |
|
36 | - * returns a URL to an icon that is related to the entity, for instance |
|
37 | - * a group icon for groups. |
|
38 | - * |
|
39 | - * @since 18.0.0 |
|
40 | - */ |
|
41 | - public function getIconUrl(): string; |
|
35 | + /** |
|
36 | + * returns a URL to an icon that is related to the entity, for instance |
|
37 | + * a group icon for groups. |
|
38 | + * |
|
39 | + * @since 18.0.0 |
|
40 | + */ |
|
41 | + public function getIconUrl(): string; |
|
42 | 42 | } |
@@ -37,24 +37,24 @@ |
||
37 | 37 | * @method string getNodeName() |
38 | 38 | */ |
39 | 39 | class TransferOwnership extends Entity { |
40 | - /** @var string */ |
|
41 | - protected $sourceUser; |
|
40 | + /** @var string */ |
|
41 | + protected $sourceUser; |
|
42 | 42 | |
43 | - /** @var string */ |
|
44 | - protected $targetUser; |
|
43 | + /** @var string */ |
|
44 | + protected $targetUser; |
|
45 | 45 | |
46 | - /** @var integer */ |
|
47 | - protected $fileId; |
|
46 | + /** @var integer */ |
|
47 | + protected $fileId; |
|
48 | 48 | |
49 | - /** @var string */ |
|
50 | - protected $nodeName; |
|
49 | + /** @var string */ |
|
50 | + protected $nodeName; |
|
51 | 51 | |
52 | - public function __construct() { |
|
53 | - $this->addType('sourceUser', 'string'); |
|
54 | - $this->addType('targetUser', 'string'); |
|
55 | - $this->addType('fileId', 'integer'); |
|
56 | - $this->addType('nodeName', 'string'); |
|
57 | - } |
|
52 | + public function __construct() { |
|
53 | + $this->addType('sourceUser', 'string'); |
|
54 | + $this->addType('targetUser', 'string'); |
|
55 | + $this->addType('fileId', 'integer'); |
|
56 | + $this->addType('nodeName', 'string'); |
|
57 | + } |
|
58 | 58 | |
59 | 59 | |
60 | 60 | } |
@@ -35,63 +35,63 @@ |
||
35 | 35 | |
36 | 36 | class Notifier implements INotifier { |
37 | 37 | |
38 | - /** @var IFactory */ |
|
39 | - private $factory; |
|
40 | - |
|
41 | - /** @var IURLGenerator */ |
|
42 | - private $url; |
|
43 | - |
|
44 | - public function __construct(IFactory $factory, IURLGenerator $url) { |
|
45 | - $this->factory = $factory; |
|
46 | - $this->url = $url; |
|
47 | - } |
|
48 | - |
|
49 | - /** |
|
50 | - * Identifier of the notifier, only use [a-z0-9_] |
|
51 | - * |
|
52 | - * @return string |
|
53 | - * @since 17.0.0 |
|
54 | - */ |
|
55 | - public function getID(): string { |
|
56 | - return 'twofactor_backupcodes'; |
|
57 | - } |
|
58 | - |
|
59 | - /** |
|
60 | - * Human readable name describing the notifier |
|
61 | - * |
|
62 | - * @return string |
|
63 | - * @since 17.0.0 |
|
64 | - */ |
|
65 | - public function getName(): string { |
|
66 | - return $this->factory->get('twofactor_backupcodes')->t('Second-factor backup codes'); |
|
67 | - } |
|
68 | - |
|
69 | - public function prepare(INotification $notification, string $languageCode): INotification { |
|
70 | - if ($notification->getApp() !== 'twofactor_backupcodes') { |
|
71 | - // Not my app => throw |
|
72 | - throw new \InvalidArgumentException(); |
|
73 | - } |
|
74 | - |
|
75 | - // Read the language from the notification |
|
76 | - $l = $this->factory->get('twofactor_backupcodes', $languageCode); |
|
77 | - |
|
78 | - switch ($notification->getSubject()) { |
|
79 | - case 'create_backupcodes': |
|
80 | - $notification->setParsedSubject( |
|
81 | - $l->t('Generate backup codes') |
|
82 | - )->setParsedMessage( |
|
83 | - $l->t('You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor.') |
|
84 | - ); |
|
85 | - |
|
86 | - $notification->setLink($this->url->linkToRouteAbsolute('settings.PersonalSettings.index', ['section' => 'security'])); |
|
87 | - |
|
88 | - $notification->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/password.svg'))); |
|
89 | - |
|
90 | - return $notification; |
|
91 | - |
|
92 | - default: |
|
93 | - // Unknown subject => Unknown notification => throw |
|
94 | - throw new \InvalidArgumentException(); |
|
95 | - } |
|
96 | - } |
|
38 | + /** @var IFactory */ |
|
39 | + private $factory; |
|
40 | + |
|
41 | + /** @var IURLGenerator */ |
|
42 | + private $url; |
|
43 | + |
|
44 | + public function __construct(IFactory $factory, IURLGenerator $url) { |
|
45 | + $this->factory = $factory; |
|
46 | + $this->url = $url; |
|
47 | + } |
|
48 | + |
|
49 | + /** |
|
50 | + * Identifier of the notifier, only use [a-z0-9_] |
|
51 | + * |
|
52 | + * @return string |
|
53 | + * @since 17.0.0 |
|
54 | + */ |
|
55 | + public function getID(): string { |
|
56 | + return 'twofactor_backupcodes'; |
|
57 | + } |
|
58 | + |
|
59 | + /** |
|
60 | + * Human readable name describing the notifier |
|
61 | + * |
|
62 | + * @return string |
|
63 | + * @since 17.0.0 |
|
64 | + */ |
|
65 | + public function getName(): string { |
|
66 | + return $this->factory->get('twofactor_backupcodes')->t('Second-factor backup codes'); |
|
67 | + } |
|
68 | + |
|
69 | + public function prepare(INotification $notification, string $languageCode): INotification { |
|
70 | + if ($notification->getApp() !== 'twofactor_backupcodes') { |
|
71 | + // Not my app => throw |
|
72 | + throw new \InvalidArgumentException(); |
|
73 | + } |
|
74 | + |
|
75 | + // Read the language from the notification |
|
76 | + $l = $this->factory->get('twofactor_backupcodes', $languageCode); |
|
77 | + |
|
78 | + switch ($notification->getSubject()) { |
|
79 | + case 'create_backupcodes': |
|
80 | + $notification->setParsedSubject( |
|
81 | + $l->t('Generate backup codes') |
|
82 | + )->setParsedMessage( |
|
83 | + $l->t('You enabled two-factor authentication but did not generate backup codes yet. They are needed to restore access to your account in case you lose your second factor.') |
|
84 | + ); |
|
85 | + |
|
86 | + $notification->setLink($this->url->linkToRouteAbsolute('settings.PersonalSettings.index', ['section' => 'security'])); |
|
87 | + |
|
88 | + $notification->setIcon($this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/password.svg'))); |
|
89 | + |
|
90 | + return $notification; |
|
91 | + |
|
92 | + default: |
|
93 | + // Unknown subject => Unknown notification => throw |
|
94 | + throw new \InvalidArgumentException(); |
|
95 | + } |
|
96 | + } |
|
97 | 97 | } |