-
-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathEditFiles.php
More file actions
277 lines (239 loc) · 11.1 KB
/
EditFiles.php
File metadata and controls
277 lines (239 loc) · 11.1 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php
namespace App\Filament\Server\Resources\Files\Pages;
use App\Enums\EditorLanguages;
use App\Enums\SubuserPermission;
use App\Enums\TablerIcon;
use App\Exceptions\Http\Server\FileSizeTooLargeException;
use App\Exceptions\Repository\FileNotEditableException;
use App\Facades\Activity;
use App\Filament\Components\Forms\Fields\MonacoEditor;
use App\Filament\Server\Resources\Files\FileResource;
use App\Livewire\AlertBanner;
use App\Models\File;
use App\Models\Server;
use App\Repositories\Daemon\DaemonFileRepository;
use App\Traits\Filament\CanCustomizeHeaderActions;
use App\Traits\Filament\CanCustomizeHeaderWidgets;
use Closure;
use Filament\Actions\Action;
use Filament\Facades\Filament;
use Filament\Forms\Components\Select;
use Filament\Forms\Concerns\InteractsWithForms;
use Filament\Notifications\Notification;
use Filament\Pages\Concerns\InteractsWithFormActions;
use Filament\Panel;
use Filament\Resources\Pages\Page;
use Filament\Resources\Pages\PageRegistration;
use Filament\Schemas\Components\Section;
use Filament\Schemas\Components\Utilities\Get;
use Filament\Schemas\Schema;
use Filament\Support\Enums\Alignment;
use Filament\Support\Facades\FilamentView;
use Illuminate\Contracts\Filesystem\FileNotFoundException;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Http\Client\ConnectionException;
use Illuminate\Routing\Route;
use Illuminate\Support\Facades\Route as RouteFacade;
use Illuminate\Support\Js;
use Livewire\Attributes\Locked;
use Throwable;
/**
* @property Schema $form
*/
class EditFiles extends Page
{
use CanCustomizeHeaderActions;
use CanCustomizeHeaderWidgets;
use InteractsWithFormActions;
use InteractsWithForms;
protected static string $resource = FileResource::class;
protected string $view = 'filament.server.pages.edit-file';
protected static ?string $title = '';
#[Locked]
public string $path;
public ?string $previousUrl = null;
private DaemonFileRepository $fileRepository;
/** @var array<string, mixed>|null */
public ?array $data = [];
/**
* @throws Throwable
*/
public function form(Schema $schema): Schema
{
/** @var Server $server */
$server = Filament::getTenant();
Activity::event('server:file.read')
->property('file', $this->path)
->log();
return $schema
->components([
Section::make(trans('server/file.actions.edit.title', ['file' => $this->path]))
->footerActions([
Action::make('fm_save_and_close')
->label(trans('server/file.actions.edit.save_close'))
->authorize(fn () => user()?->can(SubuserPermission::FileUpdate, $server))
->icon(TablerIcon::DeviceFloppy)
->keyBindings('mod+shift+s')
->action(function () {
$this->getDaemonFileRepository()->putContent($this->path, $this->data['editor'] ?? '');
Activity::event('server:file.write')
->property('file', $this->path)
->log();
Notification::make()
->success()
->title(trans('server/file.actions.edit.notification'))
->body(fn () => $this->path)
->send();
$this->redirectToList();
}),
Action::make('fm_save')
->label(trans('server/file.actions.edit.save'))
->authorize(fn () => user()?->can(SubuserPermission::FileUpdate, $server))
->icon(TablerIcon::DeviceFloppy)
->keyBindings('mod+s')
->action(function () {
$this->getDaemonFileRepository()->putContent($this->path, $this->data['editor'] ?? '');
Activity::event('server:file.write')
->property('file', $this->path)
->log();
Notification::make()
->success()
->title(trans('server/file.actions.edit.notification'))
->body(fn () => $this->path)
->send();
}),
Action::make('fm_cancel')
->label(trans('server/file.actions.edit.cancel'))
->color('danger')
->icon(TablerIcon::X)
->alpineClickHandler(function () {
$url = $this->previousUrl ?? ListFiles::getUrl(['path' => dirname($this->path)]);
return FilamentView::hasSpaMode($url)
? 'document.referrer ? window.history.back() : Livewire.navigate(' . Js::from($url) . ')'
: 'document.referrer ? window.history.back() : (window.location.href = ' . Js::from($url) . ')';
}),
])
->footerActionsAlignment(Alignment::End)
->schema([
Select::make('lang')
->label(trans('server/file.actions.new_file.syntax'))
->searchable()
->live()
->options(EditorLanguages::class)
->selectablePlaceholder(false)
->afterStateUpdated(fn ($state) => $this->dispatch('setLanguage', lang: $state))
->default(fn () => EditorLanguages::fromWithAlias(pathinfo($this->path, PATHINFO_EXTENSION))),
MonacoEditor::make('editor')
->hiddenLabel()
->language(fn (Get $get) => $get('lang'))
->default(function () {
try {
$contents = $this->getDaemonFileRepository()->getContent($this->path, config('panel.files.max_edit_size'));
return convert_to_utf8($contents);
} catch (FileSizeTooLargeException) {
AlertBanner::make('file_too_large')
->title(trans('server/file.alerts.file_too_large.title', ['name' => basename($this->path)]))
->body(trans('server/file.alerts.file_too_large.body', ['max' => convert_bytes_to_readable(config('panel.files.max_edit_size'))]))
->danger()
->closable()
->send();
} catch (FileNotFoundException) {
AlertBanner::make('file_not_found')
->title(trans('server/file.alerts.file_not_found.title', ['name' => basename($this->path)]))
->danger()
->closable()
->send();
} catch (FileNotEditableException) {
AlertBanner::make('file_is_directory')
->title(trans('server/file.alerts.file_not_found.title', ['name' => basename($this->path)]))
->danger()
->closable()
->send();
} catch (ConnectionException) {
// Alert banner for this one will be handled by ListFiles
}
$this->redirectToList();
}),
])
->columnSpanFull(),
]);
}
private function redirectToList(): void
{
$url = ListFiles::getUrl(['path' => dirname($this->path)]);
$this->redirect($url, FilamentView::hasSpaMode($url));
}
public function mount(string $path): void
{
$this->authorizeAccess();
$this->path = $path;
$this->form->fill();
$this->previousUrl = url()->previous();
foreach (File::getSpecialFiles() as $fileName => $data) {
if ($data['check'] instanceof Closure && $data['check']($path)) {
AlertBanner::make($fileName . '_info')
->title($data['title'])
->body($data['body'])
->info()
->closable()
->send();
}
}
}
protected function authorizeAccess(): void
{
abort_unless(user()?->can(SubuserPermission::FileReadContent, Filament::getTenant()), 403);
}
/**
* @return array<string, Schema>
*/
protected function getForms(): array
{
return [
'form' => $this->form(static::getResource()::form(
$this->makeSchema()
->statePath($this->getFormStatePath())
->columns($this->hasInlineLabels() ? 1 : 2)
->inlineLabel($this->hasInlineLabels()),
)),
];
}
public function getFormStatePath(): ?string
{
return 'data';
}
public function getBreadcrumbs(): array
{
$resource = static::getResource();
$breadcrumbs = [
$resource::getUrl() => $resource::getBreadcrumb(),
];
$previousParts = '';
foreach (explode('/', $this->path) as $part) {
$previousParts = $previousParts . '/' . $part;
$breadcrumbs[ListFiles::getUrl(['path' => ltrim($previousParts, '/')])] = $part;
}
return $breadcrumbs;
}
private function getDaemonFileRepository(): DaemonFileRepository
{
/** @var Server $server */
$server = Filament::getTenant();
$this->fileRepository ??= (new DaemonFileRepository())->setServer($server);
return $this->fileRepository;
}
public static function getUrl(array $parameters = [], bool $isAbsolute = true, ?string $panel = null, ?Model $tenant = null, bool $shouldGuessMissingParameters = false): string
{
return parent::getUrl($parameters, $isAbsolute, $panel, $tenant) . '/';
}
public static function route(string $path): PageRegistration
{
return new PageRegistration(
page: static::class,
route: fn (Panel $panel): Route => RouteFacade::get($path, static::class)
->middleware(static::getRouteMiddleware($panel))
->withoutMiddleware(static::getWithoutRouteMiddleware($panel))
->where('path', '.*'),
);
}
}