-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also export schemas that are only referenced by other schemas
Signed-off-by: Joas Schilling <[email protected]>
- Loading branch information
1 parent
d9e3844
commit bf187cd
Showing
4 changed files
with
162 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright Copyright (c) 2021, Julien Barnoin <[email protected]> | ||
* | ||
* @author Julien Barnoin <[email protected]> | ||
* | ||
* @license AGPL-3.0-or-later | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OCA\Notifications\Controller; | ||
|
||
use OCA\Notifications\ResponseDefinitions; | ||
use OCP\AppFramework\Http; | ||
use OCP\AppFramework\Http\Attribute\OpenAPI; | ||
use OCP\AppFramework\Http\DataResponse; | ||
use OCP\AppFramework\OCSController; | ||
|
||
/** | ||
* @psalm-import-type NotificationsPushDevice from ResponseDefinitions | ||
*/ | ||
#[OpenAPI(scope: OpenAPI::SCOPE_FEDERATION)] | ||
class ApiController extends OCSController { | ||
|
||
/** | ||
* @NoAdminRequired | ||
* | ||
* Route is ignored because of scope on the controller | ||
* | ||
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}> | ||
* | ||
* 200: OK | ||
*/ | ||
public function federationByController(): DataResponse { | ||
return new DataResponse(); | ||
} | ||
|
||
/** | ||
* @NoAdminRequired | ||
* | ||
* Route is ignored because of scope on the method | ||
* | ||
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}> | ||
* | ||
* 200: OK | ||
*/ | ||
#[OpenAPI(scope: OpenAPI::SCOPE_IGNORE)] | ||
public function ignoreByMethod(): DataResponse { | ||
return new DataResponse(); | ||
} | ||
|
||
/** | ||
* @NoAdminRequired | ||
* | ||
* Route is only in the default scope | ||
* | ||
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}> | ||
* | ||
* 200: Personal settings updated | ||
*/ | ||
#[OpenAPI] | ||
public function defaultScope(): DataResponse { | ||
return new DataResponse(); | ||
} | ||
|
||
/** | ||
* @NoAdminRequired | ||
* | ||
* Route is only in the admin scope due to defined scope | ||
* | ||
* @return DataResponse<Http::STATUS_OK, NotificationsPushDevice, array{}> | ||
* | ||
* 200: Admin settings updated | ||
*/ | ||
#[OpenAPI(scope: OpenAPI::SCOPE_ADMINISTRATION)] | ||
public function adminScope(): DataResponse { | ||
return new DataResponse($this->createNotificationsPushDevice()); | ||
} | ||
|
||
/** | ||
* @return NotificationsPushDevice | ||
*/ | ||
protected function createNotificationsPushDevice(): array { | ||
return [ | ||
'publicKey' => 'publicKey', | ||
'deviceIdentifier' => 'deviceIdentifier', | ||
'signature' => 'signature', | ||
]; | ||
} | ||
|
||
/** | ||
* @NoAdminRequired | ||
* | ||
* Route is in admin and default scope | ||
* | ||
* @return DataResponse<Http::STATUS_OK, array<empty>, array{}> | ||
* | ||
* 200: Admin settings updated | ||
*/ | ||
#[OpenAPI] | ||
#[OpenAPI(scope: OpenAPI::SCOPE_ADMINISTRATION)] | ||
public function doubleScope(): DataResponse { | ||
return new DataResponse(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters