1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
<?php
namespace JsonApi\Routes\Files;
use Psr\Http\Message\ServerRequestInterface as Request;
use Psr\Http\Message\ResponseInterface as Response;
use JsonApi\Errors\AuthorizationFailedException;
use JsonApi\Errors\BadRequestException;
use JsonApi\Errors\InternalServerError;
use JsonApi\Errors\RecordNotFoundException;
use JsonApi\JsonApiController;
use JsonApi\Routes\ValidationTrait;
class RangeFoldersCreate extends JsonApiController
{
use RangeHelperTrait, RoutesHelperTrait, ValidationTrait;
/**
* @SuppressWarnings(PHPMD.UnusedFormalParameters)
*/
public function __invoke(Request $request, Response $response, $args)
{
if (!$this->validateResourceType($args['type'])) {
throw new BadRequestException('Bad resource type.');
}
if (!$range = $this->findResource($args['type'], $args['id'])) {
throw new RecordNotFoundException();
}
$folder = $this->validateAndCreateFolder($request, $range);
return $this->getCreatedResponse($folder);
}
protected function validateAndCreateFolder(Request $request, \SimpleORMap $range)
{
if (!Authority::canShowFileArea($user = $this->getUser($request), $range)) {
throw new AuthorizationFailedException();
}
$json = $this->validate($request);
if (!$parent = $this->getRelationshipParent($json)) {
throw new RecordNotFoundException('Bad `parent` folder.');
}
return $this->validateAndCreateSubfolder($range, $user, $json, $parent);
}
/**
* @SuppressWarnings(PHPMD.UnusedFormalParameters)
*/
protected function validateResourceDocument($json, $data)
{
if ($err = $this->validateFolderResourceObject($json, null, true)) {
return $err;
}
}
protected function validateAndCreateSubfolder(
\SimpleORMap $range,
\User $user,
array $json,
\Folder $parentFolder
) {
if ($parentFolder->range_id !== $range->id) {
throw new BadRequestException('Parent folder does not belong to this file area.');
}
if (!$parent = $parentFolder->getTypedFolder()) {
throw new InternalServerError();
}
if (!Authority::canCreateSubfolder($user, $parent)) {
throw new AuthorizationFailedException();
}
return $this->createFolder($user, $json, $parent);
}
protected function getRelationshipParent($json)
{
if (!$parentId = $this->getRelationshipParentId($json)) {
return null;
}
return \Folder::find($parentId);
}
protected function getRelationshipParentId($json)
{
return self::arrayGet($json, 'data.relationships.parent.data.id', false);
}
protected function createFolder(
\User $user,
array $json,
\FolderType $parentFolder
) {
$getTrimmed = function ($key, $default = '') use ($json) {
return trim(self::arrayGet($json, $key, $default));
};
$name = $getTrimmed('data.attributes.name');
$description = $getTrimmed('data.attributes.description');
$folderType = $getTrimmed('data.attributes.folder-type', 'StandardFolder');
$result = \FileManager::createSubFolder(
$parentFolder,
$user,
$folderType,
$name,
$description
);
if (is_array($result)) {
throw new BadRequestException($result[0]);
}
return $result;
}
}
|