Cleanup code in MountController.php, again.
This commit is contained in:
parent
050075b835
commit
66b9169458
2 changed files with 17 additions and 31 deletions
|
@ -105,20 +105,6 @@ class MountController extends Controller
|
||||||
$model = (new Mount())->fill($request->validated());
|
$model = (new Mount())->fill($request->validated());
|
||||||
$model->forceFill(['uuid' => Uuid::uuid4()->toString()]);
|
$model->forceFill(['uuid' => Uuid::uuid4()->toString()]);
|
||||||
|
|
||||||
foreach (Mount::$invalidSourcePaths as $path) {
|
|
||||||
if (Str::startsWith($model->source, $path)) {
|
|
||||||
$this->alert->danger('"' . $path . '" cannot be used as a source path.')->flash();
|
|
||||||
return redirect()->route('admin.mounts');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (Mount::$invalidTargetPaths as $path) {
|
|
||||||
if (Str::startsWith($model->target, $path)) {
|
|
||||||
$this->alert->danger('"' . $path . '" cannot be used as a target path.')->flash();
|
|
||||||
return redirect()->route('admin.mounts');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$model->saveOrFail();
|
$model->saveOrFail();
|
||||||
$mount = $model->fresh();
|
$mount = $model->fresh();
|
||||||
|
|
||||||
|
@ -142,23 +128,7 @@ class MountController extends Controller
|
||||||
return $this->delete($mount);
|
return $this->delete($mount);
|
||||||
}
|
}
|
||||||
|
|
||||||
$mount->forceFill($request->validated());
|
$mount->forceFill($request->validated())->save();
|
||||||
|
|
||||||
foreach (Mount::$invalidSourcePaths as $path) {
|
|
||||||
if (Str::startsWith($mount->source, $path)) {
|
|
||||||
$this->alert->danger('"' . $path . '" cannot be used as a source path.')->flash();
|
|
||||||
return redirect()->route('admin.mounts.view', $mount->id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (Mount::$invalidTargetPaths as $path) {
|
|
||||||
if (Str::startsWith($mount->target, $path)) {
|
|
||||||
$this->alert->danger('"' . $path . '" cannot be used as a target path.')->flash();
|
|
||||||
return redirect()->route('admin.mounts.view', $mount->id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$mount->save();
|
|
||||||
|
|
||||||
$this->alert->success('Mount was updated successfully.')->flash();
|
$this->alert->success('Mount was updated successfully.')->flash();
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
namespace Pterodactyl\Models;
|
namespace Pterodactyl\Models;
|
||||||
|
|
||||||
|
use Illuminate\Validation\Rules\NotIn;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @property int $id
|
* @property int $id
|
||||||
* @property string $uuid
|
* @property string $uuid
|
||||||
|
@ -63,6 +65,20 @@ class Mount extends Model
|
||||||
'user_mountable' => 'sometimes|boolean',
|
'user_mountable' => 'sometimes|boolean',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Implement language verification by overriding Eloquence's gather
|
||||||
|
* rules function.
|
||||||
|
*/
|
||||||
|
public static function getRules()
|
||||||
|
{
|
||||||
|
$rules = parent::getRules();
|
||||||
|
|
||||||
|
$rules['source'][] = new NotIn(Mount::$invalidSourcePaths);
|
||||||
|
$rules['target'][] = new NotIn(Mount::$invalidSourcePaths);
|
||||||
|
|
||||||
|
return $rules;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Disable timestamps on this model.
|
* Disable timestamps on this model.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue