mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 14:06:15 +00:00
#591 - services
This commit is contained in:
@ -15,6 +15,8 @@ class Install
|
|||||||
*/
|
*/
|
||||||
public function install(Server $server, array $input): Service
|
public function install(Server $server, array $input): Service
|
||||||
{
|
{
|
||||||
|
Validator::make($input, self::rules($input))->validate();
|
||||||
|
|
||||||
$input['type'] = config('core.service_types')[$input['name']];
|
$input['type'] = config('core.service_types')[$input['name']];
|
||||||
|
|
||||||
$service = new Service([
|
$service = new Service([
|
||||||
|
@ -2,17 +2,39 @@
|
|||||||
|
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
|
use App\Actions\Service\Install;
|
||||||
|
use App\Actions\Service\Manage;
|
||||||
|
use App\Actions\Service\Uninstall;
|
||||||
|
use App\Http\Resources\ServiceResource;
|
||||||
use App\Models\Server;
|
use App\Models\Server;
|
||||||
use App\Models\Service;
|
use App\Models\Service;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
|
use Illuminate\Http\RedirectResponse;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Inertia\Inertia;
|
||||||
|
use Inertia\Response;
|
||||||
|
use Spatie\RouteAttributes\Attributes\Delete;
|
||||||
use Spatie\RouteAttributes\Attributes\Get;
|
use Spatie\RouteAttributes\Attributes\Get;
|
||||||
use Spatie\RouteAttributes\Attributes\Middleware;
|
use Spatie\RouteAttributes\Attributes\Middleware;
|
||||||
|
use Spatie\RouteAttributes\Attributes\Post;
|
||||||
use Spatie\RouteAttributes\Attributes\Prefix;
|
use Spatie\RouteAttributes\Attributes\Prefix;
|
||||||
|
|
||||||
#[Prefix('servers/{server}/services')]
|
#[Prefix('servers/{server}/services')]
|
||||||
#[Middleware(['auth', 'has-project'])]
|
#[Middleware(['auth', 'has-project'])]
|
||||||
class ServiceController extends Controller
|
class ServiceController extends Controller
|
||||||
{
|
{
|
||||||
|
#[Get('/', name: 'services')]
|
||||||
|
public function index(Server $server): Response
|
||||||
|
{
|
||||||
|
$this->authorize('viewAny', [Service::class, $server]);
|
||||||
|
|
||||||
|
$services = $server->services()->simplePaginate(config('web.pagination_size'));
|
||||||
|
|
||||||
|
return Inertia::render('services/index', [
|
||||||
|
'services' => ServiceResource::collection($services),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
#[Get('{service}/versions', name: 'services.versions')]
|
#[Get('{service}/versions', name: 'services.versions')]
|
||||||
public function versions(Server $server, string $service): JsonResponse
|
public function versions(Server $server, string $service): JsonResponse
|
||||||
{
|
{
|
||||||
@ -27,4 +49,88 @@ public function versions(Server $server, string $service): JsonResponse
|
|||||||
|
|
||||||
return response()->json($versions);
|
return response()->json($versions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[Post('/', name: 'services.store')]
|
||||||
|
public function store(Request $request, Server $server): RedirectResponse
|
||||||
|
{
|
||||||
|
$this->authorize('create', [Service::class, $server]);
|
||||||
|
|
||||||
|
app(Install::class)->install($server, $request->input());
|
||||||
|
|
||||||
|
return back()->with('success', __(':service is being installed.', [
|
||||||
|
'service' => $request->input('name'),
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Post('/{service}/start', name: 'services.start')]
|
||||||
|
public function start(Server $server, Service $service): RedirectResponse
|
||||||
|
{
|
||||||
|
$this->authorize('start', $service);
|
||||||
|
|
||||||
|
app(Manage::class)->start($service);
|
||||||
|
|
||||||
|
return back()->with('success', __(':service is being started.', [
|
||||||
|
'service' => $service->name,
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Post('/{service}/restart', name: 'services.restart')]
|
||||||
|
public function restart(Server $server, Service $service): RedirectResponse
|
||||||
|
{
|
||||||
|
$this->authorize('restart', $service);
|
||||||
|
|
||||||
|
app(Manage::class)->restart($service);
|
||||||
|
|
||||||
|
return back()->with('success', __(':service is being restarted.', [
|
||||||
|
'service' => $service->name,
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Post('/{service}/stop', name: 'services.stop')]
|
||||||
|
public function stop(Server $server, Service $service): RedirectResponse
|
||||||
|
{
|
||||||
|
$this->authorize('stop', $service);
|
||||||
|
|
||||||
|
app(Manage::class)->stop($service);
|
||||||
|
|
||||||
|
return back()->with('success', __(':service is being stopped.', [
|
||||||
|
'service' => $service->name,
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Post('/{service}/enable', name: 'services.enable')]
|
||||||
|
public function enable(Server $server, Service $service): RedirectResponse
|
||||||
|
{
|
||||||
|
$this->authorize('enable', $service);
|
||||||
|
|
||||||
|
app(Manage::class)->enable($service);
|
||||||
|
|
||||||
|
return back()->with('success', __(':service is being enabled.', [
|
||||||
|
'service' => $service->name,
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Post('/{service}/disable', name: 'services.disable')]
|
||||||
|
public function disable(Server $server, Service $service): RedirectResponse
|
||||||
|
{
|
||||||
|
$this->authorize('disable', $service);
|
||||||
|
|
||||||
|
app(Manage::class)->disable($service);
|
||||||
|
|
||||||
|
return back()->with('success', __(':service is being disabled.', [
|
||||||
|
'service' => $service->name,
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[Delete('/{service}', name: 'services.destroy')]
|
||||||
|
public function destroy(Server $server, Service $service): RedirectResponse
|
||||||
|
{
|
||||||
|
$this->authorize('delete', $service);
|
||||||
|
|
||||||
|
app(Uninstall::class)->uninstall($service);
|
||||||
|
|
||||||
|
return back()->with('warning', __(':service is being uninstalled.', [
|
||||||
|
'service' => $service->name,
|
||||||
|
]));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,8 @@ public function toArray(Request $request): array
|
|||||||
'version' => $this->version,
|
'version' => $this->version,
|
||||||
'unit' => $this->unit,
|
'unit' => $this->unit,
|
||||||
'status' => $this->status,
|
'status' => $this->status,
|
||||||
|
'status_color' => Service::$statusColors[$this->status] ?? 'gray',
|
||||||
|
'icon' => config('core.service_icons')[$this->name] ?? '',
|
||||||
'is_default' => $this->is_default,
|
'is_default' => $this->is_default,
|
||||||
'created_at' => $this->created_at,
|
'created_at' => $this->created_at,
|
||||||
'updated_at' => $this->updated_at,
|
'updated_at' => $this->updated_at,
|
||||||
|
@ -10,7 +10,7 @@ abstract class AbstractWebserver extends AbstractService implements Webserver
|
|||||||
public function creationRules(array $input): array
|
public function creationRules(array $input): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'type' => [
|
'name' => [
|
||||||
'required',
|
'required',
|
||||||
function (string $attribute, mixed $value, Closure $fail): void {
|
function (string $attribute, mixed $value, Closure $fail): void {
|
||||||
$webserverExists = $this->service->server->webserver();
|
$webserverExists = $this->service->server->webserver();
|
||||||
|
@ -1,183 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
return [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Icons Sets
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| With this config option you can define a couple of
|
|
||||||
| default icon sets. Provide a key name for your icon
|
|
||||||
| set and a combination from the options below.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'sets' => [
|
|
||||||
|
|
||||||
'default' => [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
| Icons Path
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Provide the relative path from your app root to your SVG icons
|
|
||||||
| directory. Icons are loaded recursively so there's no need to
|
|
||||||
| list every sub-directory.
|
|
||||||
|
|
|
||||||
| Relative to the disk root when the disk option is set.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'path' => 'resources/svg',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
| Filesystem Disk
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| Optionally, provide a specific filesystem disk to read
|
|
||||||
| icons from. When defining a disk, the "path" option
|
|
||||||
| starts relatively from the disk root.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'disk' => '',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
| Default Prefix
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to define a default prefix for
|
|
||||||
| your icons. The dash separator will be applied automatically
|
|
||||||
| to every icon name. It's required and needs to be unique.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'prefix' => 'icon',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
| Fallback Icon
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to define a fallback
|
|
||||||
| icon when an icon in this set cannot be found.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'fallback' => '',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
| Default Set Classes
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to define some classes which
|
|
||||||
| will be applied by default to all icons within this set.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'class' => '',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
| Default Set Attributes
|
|
||||||
|-----------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to define some attributes which
|
|
||||||
| will be applied by default to all icons within this set.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'attributes' => [
|
|
||||||
// 'width' => 50,
|
|
||||||
// 'height' => 50,
|
|
||||||
],
|
|
||||||
|
|
||||||
],
|
|
||||||
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Global Default Classes
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to define some classes which
|
|
||||||
| will be applied by default to all icons.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'class' => '',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Global Default Attributes
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to define some attributes which
|
|
||||||
| will be applied by default to all icons.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'attributes' => [
|
|
||||||
// 'width' => 50,
|
|
||||||
// 'height' => 50,
|
|
||||||
],
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Global Fallback Icon
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to define a global fallback
|
|
||||||
| icon when an icon in any set cannot be found. It can
|
|
||||||
| reference any icon from any configured set.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'fallback' => '',
|
|
||||||
|
|
||||||
/*
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
| Components
|
|
||||||
|--------------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| These config options allow you to define some
|
|
||||||
| settings related to Blade Components.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'components' => [
|
|
||||||
|
|
||||||
/*
|
|
||||||
|----------------------------------------------------------------------
|
|
||||||
| Disable Components
|
|
||||||
|----------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to disable Blade components
|
|
||||||
| completely. It's useful to avoid performance problems
|
|
||||||
| when working with large icon libraries.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'disabled' => false,
|
|
||||||
|
|
||||||
/*
|
|
||||||
|----------------------------------------------------------------------
|
|
||||||
| Default Icon Component Name
|
|
||||||
|----------------------------------------------------------------------
|
|
||||||
|
|
|
||||||
| This config option allows you to define the name
|
|
||||||
| for the default Icon class component.
|
|
||||||
|
|
|
||||||
*/
|
|
||||||
|
|
||||||
'default' => 'icon',
|
|
||||||
|
|
||||||
],
|
|
||||||
|
|
||||||
];
|
|
@ -3,6 +3,7 @@ import {
|
|||||||
ArrowLeftIcon,
|
ArrowLeftIcon,
|
||||||
ClockIcon,
|
ClockIcon,
|
||||||
CloudUploadIcon,
|
CloudUploadIcon,
|
||||||
|
CogIcon,
|
||||||
DatabaseIcon,
|
DatabaseIcon,
|
||||||
FlameIcon,
|
FlameIcon,
|
||||||
HomeIcon,
|
HomeIcon,
|
||||||
@ -110,11 +111,12 @@ export default function ServerLayout({ children }: { children: ReactNode }) {
|
|||||||
icon: KeyIcon,
|
icon: KeyIcon,
|
||||||
isDisabled: isMenuDisabled,
|
isDisabled: isMenuDisabled,
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// title: 'Services',
|
title: 'Services',
|
||||||
// href: '#',
|
href: route('services', { server: page.props.server.id }),
|
||||||
// icon: CogIcon,
|
icon: CogIcon,
|
||||||
// },
|
isDisabled: isMenuDisabled,
|
||||||
|
},
|
||||||
// {
|
// {
|
||||||
// title: 'Metrics',
|
// title: 'Metrics',
|
||||||
// href: '#',
|
// href: '#',
|
||||||
|
175
resources/js/pages/services/components/columns.tsx
Normal file
175
resources/js/pages/services/components/columns.tsx
Normal file
@ -0,0 +1,175 @@
|
|||||||
|
import { ColumnDef } from '@tanstack/react-table';
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogClose,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
DialogTrigger,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
|
import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger } from '@/components/ui/dropdown-menu';
|
||||||
|
import { Button } from '@/components/ui/button';
|
||||||
|
import { useForm } from '@inertiajs/react';
|
||||||
|
import { LoaderCircleIcon, MoreVerticalIcon } from 'lucide-react';
|
||||||
|
import FormSuccessful from '@/components/form-successful';
|
||||||
|
import React, { useState } from 'react';
|
||||||
|
import { Service } from '@/types/service';
|
||||||
|
import { Badge } from '@/components/ui/badge';
|
||||||
|
import DateTime from '@/components/date-time';
|
||||||
|
|
||||||
|
function Uninstall({ service }: { service: Service }) {
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const form = useForm();
|
||||||
|
|
||||||
|
const submit = () => {
|
||||||
|
form.delete(route('services.destroy', { server: service.server_id, service: service }), {
|
||||||
|
onSuccess: () => {
|
||||||
|
setOpen(false);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
|
<DialogTrigger asChild>
|
||||||
|
<DropdownMenuItem variant="destructive" onSelect={(e) => e.preventDefault()}>
|
||||||
|
Uninstall
|
||||||
|
</DropdownMenuItem>
|
||||||
|
</DialogTrigger>
|
||||||
|
<DialogContent>
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Uninstall service</DialogTitle>
|
||||||
|
<DialogDescription className="sr-only">Uninstall service</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
<p className="p-4">Are you sure you want to uninstall this service? This action cannot be undone.</p>
|
||||||
|
<DialogFooter>
|
||||||
|
<DialogClose asChild>
|
||||||
|
<Button variant="outline">Cancel</Button>
|
||||||
|
</DialogClose>
|
||||||
|
<Button variant="destructive" disabled={form.processing} onClick={submit}>
|
||||||
|
{form.processing && <LoaderCircleIcon className="animate-spin" />}
|
||||||
|
<FormSuccessful successful={form.recentlySuccessful} />
|
||||||
|
Uninstall
|
||||||
|
</Button>
|
||||||
|
</DialogFooter>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function Action({ type, service }: { type: 'start' | 'stop' | 'restart' | 'enable' | 'disable'; service: Service }) {
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const form = useForm();
|
||||||
|
|
||||||
|
const submit = () => {
|
||||||
|
form.post(route(`services.${type}`, { server: service.server_id, service: service }), {
|
||||||
|
onSuccess: () => {
|
||||||
|
setOpen(false);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
|
<DialogTrigger asChild>
|
||||||
|
<DropdownMenuItem onSelect={(e) => e.preventDefault()} className="capitalize">
|
||||||
|
{type}
|
||||||
|
</DropdownMenuItem>
|
||||||
|
</DialogTrigger>
|
||||||
|
<DialogContent>
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>
|
||||||
|
<span className="capitalize">{type}</span> service
|
||||||
|
</DialogTitle>
|
||||||
|
<DialogDescription className="sr-only">{type} service</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
<p className="p-4">Are you sure you want to {type} the service?</p>
|
||||||
|
<DialogFooter>
|
||||||
|
<DialogClose asChild>
|
||||||
|
<Button variant="outline">Cancel</Button>
|
||||||
|
</DialogClose>
|
||||||
|
<Button
|
||||||
|
variant={['disable', 'stop'].includes(type) ? 'destructive' : 'default'}
|
||||||
|
disabled={form.processing}
|
||||||
|
onClick={submit}
|
||||||
|
className="capitalize"
|
||||||
|
>
|
||||||
|
{form.processing && <LoaderCircleIcon className="animate-spin" />}
|
||||||
|
<FormSuccessful successful={form.recentlySuccessful} />
|
||||||
|
{type}
|
||||||
|
</Button>
|
||||||
|
</DialogFooter>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export const columns: ColumnDef<Service>[] = [
|
||||||
|
// {
|
||||||
|
// accessorKey: 'id',
|
||||||
|
// header: 'Service',
|
||||||
|
// enableColumnFilter: true,
|
||||||
|
// enableSorting: true,
|
||||||
|
// cell: ({ row }) => {
|
||||||
|
// return <img src={row.original.icon} className="size-7 rounded-sm" alt={`${row.original.name} icon`} />;
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
accessorKey: 'name',
|
||||||
|
header: 'Name',
|
||||||
|
enableColumnFilter: true,
|
||||||
|
enableSorting: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: 'version',
|
||||||
|
header: 'Version',
|
||||||
|
enableColumnFilter: true,
|
||||||
|
enableSorting: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: 'created_at',
|
||||||
|
header: 'Installed at',
|
||||||
|
enableColumnFilter: true,
|
||||||
|
enableSorting: true,
|
||||||
|
cell: ({ row }) => {
|
||||||
|
return <DateTime date={row.original.created_at} />;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
accessorKey: 'status',
|
||||||
|
header: 'Status',
|
||||||
|
enableColumnFilter: true,
|
||||||
|
enableSorting: true,
|
||||||
|
cell: ({ row }) => {
|
||||||
|
return <Badge variant={row.original.status_color}>{row.original.status}</Badge>;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'actions',
|
||||||
|
enableColumnFilter: false,
|
||||||
|
enableSorting: false,
|
||||||
|
cell: ({ row }) => {
|
||||||
|
return (
|
||||||
|
<div className="flex items-center justify-end">
|
||||||
|
<DropdownMenu modal={false}>
|
||||||
|
<DropdownMenuTrigger asChild>
|
||||||
|
<Button variant="ghost" className="h-8 w-8 p-0">
|
||||||
|
<span className="sr-only">Open menu</span>
|
||||||
|
<MoreVerticalIcon />
|
||||||
|
</Button>
|
||||||
|
</DropdownMenuTrigger>
|
||||||
|
<DropdownMenuContent align="end">
|
||||||
|
<Action type="start" service={row.original} />
|
||||||
|
<Action type="stop" service={row.original} />
|
||||||
|
<Action type="restart" service={row.original} />
|
||||||
|
<Action type="enable" service={row.original} />
|
||||||
|
<Action type="disable" service={row.original} />
|
||||||
|
<DropdownMenuSeparator />
|
||||||
|
<Uninstall service={row.original} />
|
||||||
|
</DropdownMenuContent>
|
||||||
|
</DropdownMenu>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
120
resources/js/pages/services/components/install.tsx
Normal file
120
resources/js/pages/services/components/install.tsx
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
import React, { FormEvent, ReactNode, useState } from 'react';
|
||||||
|
import { useForm, usePage } from '@inertiajs/react';
|
||||||
|
import { Server } from '@/types/server';
|
||||||
|
import { SharedData } from '@/types';
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogClose,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
DialogTrigger,
|
||||||
|
} from '@/components/ui/dialog';
|
||||||
|
import { Form, FormField, FormFields } from '@/components/ui/form';
|
||||||
|
import { Label } from '@/components/ui/label';
|
||||||
|
import InputError from '@/components/ui/input-error';
|
||||||
|
import { Button } from '@/components/ui/button';
|
||||||
|
import { LoaderCircleIcon } from 'lucide-react';
|
||||||
|
import { Select, SelectContent, SelectGroup, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
||||||
|
|
||||||
|
export default function InstallService({ children }: { children: ReactNode }) {
|
||||||
|
const page = usePage<
|
||||||
|
{
|
||||||
|
server: Server;
|
||||||
|
} & SharedData
|
||||||
|
>();
|
||||||
|
|
||||||
|
const [open, setOpen] = useState(false);
|
||||||
|
const form = useForm<{
|
||||||
|
type: string;
|
||||||
|
name: string;
|
||||||
|
version: string;
|
||||||
|
}>({
|
||||||
|
type: '',
|
||||||
|
name: '',
|
||||||
|
version: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
const submit = (e: FormEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
form.post(route('services.store', { server: page.props.server.id }), {
|
||||||
|
onSuccess: () => {
|
||||||
|
setOpen(false);
|
||||||
|
form.reset();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
|
<DialogTrigger asChild>{children}</DialogTrigger>
|
||||||
|
<DialogContent className="sm:max-w-lg">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Install service</DialogTitle>
|
||||||
|
<DialogDescription className="sr-only">Install new service</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
<Form id="install-service-form" onSubmit={submit} className="p-4">
|
||||||
|
<FormFields>
|
||||||
|
{/*service*/}
|
||||||
|
<FormField>
|
||||||
|
<Label htmlFor="name">Name</Label>
|
||||||
|
<Select
|
||||||
|
value={form.data.name}
|
||||||
|
onValueChange={(value) => {
|
||||||
|
form.setData('name', value);
|
||||||
|
form.setData('version', '');
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<SelectTrigger id="name">
|
||||||
|
<SelectValue placeholder="Select a service" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectGroup>
|
||||||
|
{Object.entries(page.props.configs.service_types).map(([key]) => (
|
||||||
|
<SelectItem key={`service-${key}`} value={key}>
|
||||||
|
{key}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectGroup>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<InputError message={form.errors.type || form.errors.name} />
|
||||||
|
</FormField>
|
||||||
|
|
||||||
|
{/*version*/}
|
||||||
|
<FormField>
|
||||||
|
<Label htmlFor="version">Version</Label>
|
||||||
|
<Select value={form.data.version} onValueChange={(value) => form.setData('version', value)}>
|
||||||
|
<SelectTrigger id="version">
|
||||||
|
<SelectValue placeholder="Select a version" />
|
||||||
|
</SelectTrigger>
|
||||||
|
<SelectContent>
|
||||||
|
<SelectGroup>
|
||||||
|
{form.data.name &&
|
||||||
|
page.props.configs.service_versions[form.data.name].map((version) => (
|
||||||
|
<SelectItem key={`version-${form.data.name}-${version}`} value={version}>
|
||||||
|
{version}
|
||||||
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</SelectGroup>
|
||||||
|
</SelectContent>
|
||||||
|
</Select>
|
||||||
|
<InputError message={form.errors.version} />
|
||||||
|
</FormField>
|
||||||
|
</FormFields>
|
||||||
|
</Form>
|
||||||
|
<DialogFooter>
|
||||||
|
<DialogClose asChild>
|
||||||
|
<Button variant="outline">Close</Button>
|
||||||
|
</DialogClose>
|
||||||
|
<Button form="install-service-form" disabled={form.processing}>
|
||||||
|
{form.processing && <LoaderCircleIcon className="animate-spin" />}
|
||||||
|
Install
|
||||||
|
</Button>
|
||||||
|
</DialogFooter>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
48
resources/js/pages/services/index.tsx
Normal file
48
resources/js/pages/services/index.tsx
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import { Head, usePage } from '@inertiajs/react';
|
||||||
|
import { Server } from '@/types/server';
|
||||||
|
import { PaginatedData } from '@/types';
|
||||||
|
import ServerLayout from '@/layouts/server/layout';
|
||||||
|
import HeaderContainer from '@/components/header-container';
|
||||||
|
import Heading from '@/components/heading';
|
||||||
|
import { Button } from '@/components/ui/button';
|
||||||
|
import { BookOpenIcon, PlusIcon } from 'lucide-react';
|
||||||
|
import Container from '@/components/container';
|
||||||
|
import { DataTable } from '@/components/data-table';
|
||||||
|
import { columns } from '@/pages/services/components/columns';
|
||||||
|
import { Service } from '@/types/service';
|
||||||
|
import InstallService from '@/pages/services/components/install';
|
||||||
|
|
||||||
|
export default function WorkerIndex() {
|
||||||
|
const page = usePage<{
|
||||||
|
server: Server;
|
||||||
|
services: PaginatedData<Service>;
|
||||||
|
}>();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ServerLayout>
|
||||||
|
<Head title={`Services - ${page.props.server.name}`} />
|
||||||
|
|
||||||
|
<Container className="max-w-5xl">
|
||||||
|
<HeaderContainer>
|
||||||
|
<Heading title="Services" description="Here you can manage server's services" />
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<a href="https://vitodeploy.com/docs/servers/services" target="_blank">
|
||||||
|
<Button variant="outline">
|
||||||
|
<BookOpenIcon />
|
||||||
|
<span className="hidden lg:block">Docs</span>
|
||||||
|
</Button>
|
||||||
|
</a>
|
||||||
|
<InstallService>
|
||||||
|
<Button>
|
||||||
|
<PlusIcon />
|
||||||
|
<span className="hidden lg:block">Install</span>
|
||||||
|
</Button>
|
||||||
|
</InstallService>
|
||||||
|
</div>
|
||||||
|
</HeaderContainer>
|
||||||
|
|
||||||
|
<DataTable columns={columns} paginatedData={page.props.services} />
|
||||||
|
</Container>
|
||||||
|
</ServerLayout>
|
||||||
|
);
|
||||||
|
}
|
@ -77,11 +77,15 @@ function Action({ type, worker }: { type: 'start' | 'stop' | 'restart'; worker:
|
|||||||
return (
|
return (
|
||||||
<Dialog open={open} onOpenChange={setOpen}>
|
<Dialog open={open} onOpenChange={setOpen}>
|
||||||
<DialogTrigger asChild>
|
<DialogTrigger asChild>
|
||||||
<DropdownMenuItem onSelect={(e) => e.preventDefault()}>{type}</DropdownMenuItem>
|
<DropdownMenuItem onSelect={(e) => e.preventDefault()} className="capitalize">
|
||||||
|
{type}
|
||||||
|
</DropdownMenuItem>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
<DialogHeader>
|
<DialogHeader>
|
||||||
<DialogTitle>{type} worker</DialogTitle>
|
<DialogTitle>
|
||||||
|
<span className="capitalize">{type}</span> worker
|
||||||
|
</DialogTitle>
|
||||||
<DialogDescription className="sr-only">{type} worker</DialogDescription>
|
<DialogDescription className="sr-only">{type} worker</DialogDescription>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
<p className="p-4">Are you sure you want to {type} the worker?</p>
|
<p className="p-4">Are you sure you want to {type} the worker?</p>
|
||||||
@ -89,7 +93,7 @@ function Action({ type, worker }: { type: 'start' | 'stop' | 'restart'; worker:
|
|||||||
<DialogClose asChild>
|
<DialogClose asChild>
|
||||||
<Button variant="outline">Cancel</Button>
|
<Button variant="outline">Cancel</Button>
|
||||||
</DialogClose>
|
</DialogClose>
|
||||||
<Button disabled={form.processing} onClick={submit}>
|
<Button variant={['stop'].includes(type) ? 'destructive' : 'default'} disabled={form.processing} onClick={submit} className="capitalize">
|
||||||
{form.processing && <LoaderCircleIcon className="animate-spin" />}
|
{form.processing && <LoaderCircleIcon className="animate-spin" />}
|
||||||
<FormSuccessful successful={form.recentlySuccessful} />
|
<FormSuccessful successful={form.recentlySuccessful} />
|
||||||
{type}
|
{type}
|
||||||
|
@ -107,8 +107,8 @@ export default function WorkerForm({ serverId, worker, children }: { serverId: n
|
|||||||
/>
|
/>
|
||||||
<InputError message={form.errors.numprocs} />
|
<InputError message={form.errors.numprocs} />
|
||||||
</FormField>
|
</FormField>
|
||||||
</FormFields>
|
|
||||||
|
|
||||||
|
<div className="grid grid-cols-2 gap-6">
|
||||||
{/*auto start*/}
|
{/*auto start*/}
|
||||||
<FormField>
|
<FormField>
|
||||||
<div className="flex items-center space-x-2">
|
<div className="flex items-center space-x-2">
|
||||||
@ -126,6 +126,8 @@ export default function WorkerForm({ serverId, worker, children }: { serverId: n
|
|||||||
<InputError message={form.errors.auto_restart} />
|
<InputError message={form.errors.auto_restart} />
|
||||||
</div>
|
</div>
|
||||||
</FormField>
|
</FormField>
|
||||||
|
</div>
|
||||||
|
</FormFields>
|
||||||
</Form>
|
</Form>
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
<DialogClose asChild>
|
<DialogClose asChild>
|
||||||
|
3
resources/js/types/index.d.ts
vendored
3
resources/js/types/index.d.ts
vendored
@ -53,6 +53,9 @@ export interface Configs {
|
|||||||
service_versions: {
|
service_versions: {
|
||||||
[service: string]: string[];
|
[service: string]: string[];
|
||||||
};
|
};
|
||||||
|
service_types: {
|
||||||
|
[service: string]: string;
|
||||||
|
};
|
||||||
colors: string[];
|
colors: string[];
|
||||||
webservers: string[];
|
webservers: string[];
|
||||||
databases: string[];
|
databases: string[];
|
||||||
|
16
resources/js/types/service.d.ts
vendored
Normal file
16
resources/js/types/service.d.ts
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
export interface Service {
|
||||||
|
id: number;
|
||||||
|
server_id: number;
|
||||||
|
type: string;
|
||||||
|
type_data: unknown;
|
||||||
|
name: string;
|
||||||
|
version: string;
|
||||||
|
unit: number;
|
||||||
|
is_default: boolean;
|
||||||
|
status: string;
|
||||||
|
status_color: 'gray' | 'success' | 'info' | 'warning' | 'danger';
|
||||||
|
icon: string;
|
||||||
|
created_at: string;
|
||||||
|
updated_at: string;
|
||||||
|
[key: string]: unknown;
|
||||||
|
}
|
@ -5,12 +5,10 @@
|
|||||||
use App\Enums\ServiceStatus;
|
use App\Enums\ServiceStatus;
|
||||||
use App\Facades\SSH;
|
use App\Facades\SSH;
|
||||||
use App\Models\Server;
|
use App\Models\Server;
|
||||||
use App\Web\Pages\Servers\Services\Index;
|
|
||||||
use App\Web\Pages\Servers\Services\Widgets\ServicesList;
|
|
||||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||||
use Illuminate\Support\Facades\File;
|
use Illuminate\Support\Facades\File;
|
||||||
use Illuminate\Support\Facades\Http;
|
use Illuminate\Support\Facades\Http;
|
||||||
use Livewire\Livewire;
|
use Inertia\Testing\AssertableInertia;
|
||||||
use Tests\TestCase;
|
use Tests\TestCase;
|
||||||
|
|
||||||
class ServicesTest extends TestCase
|
class ServicesTest extends TestCase
|
||||||
@ -21,14 +19,11 @@ public function test_see_services_list(): void
|
|||||||
{
|
{
|
||||||
$this->actingAs($this->user);
|
$this->actingAs($this->user);
|
||||||
|
|
||||||
$this->get(Index::getUrl(['server' => $this->server]))
|
$this->get(route('services', [
|
||||||
|
'server' => $this->server,
|
||||||
|
]))
|
||||||
->assertSuccessful()
|
->assertSuccessful()
|
||||||
->assertSee('mysql')
|
->assertInertia(fn (AssertableInertia $page) => $page->component('services/index'));
|
||||||
->assertSee('nginx')
|
|
||||||
->assertSee('php')
|
|
||||||
->assertSee('supervisor')
|
|
||||||
->assertSee('redis')
|
|
||||||
->assertSee('ufw');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -44,11 +39,11 @@ public function test_restart_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: active');
|
SSH::fake('Active: active');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.restart', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('restart', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -66,11 +61,11 @@ public function test_failed_to_restart_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: inactive');
|
SSH::fake('Active: inactive');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.restart', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('restart', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -88,11 +83,11 @@ public function test_stop_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: inactive');
|
SSH::fake('Active: inactive');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.stop', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('stop', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -110,11 +105,11 @@ public function test_failed_to_stop_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: active');
|
SSH::fake('Active: active');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.stop', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('stop', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -134,11 +129,11 @@ public function test_start_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: active');
|
SSH::fake('Active: active');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.start', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('start', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -156,11 +151,11 @@ public function test_failed_to_start_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: inactive');
|
SSH::fake('Active: inactive');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.start', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('start', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -180,11 +175,11 @@ public function test_enable_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: active');
|
SSH::fake('Active: active');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.enable', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('enable', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -202,11 +197,11 @@ public function test_failed_to_enable_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: inactive');
|
SSH::fake('Active: inactive');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.enable', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('enable', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -224,11 +219,11 @@ public function test_disable_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: inactive');
|
SSH::fake('Active: inactive');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.disable', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('disable', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -246,11 +241,11 @@ public function test_failed_to_disable_service(string $name): void
|
|||||||
|
|
||||||
SSH::fake('Active: active');
|
SSH::fake('Active: active');
|
||||||
|
|
||||||
Livewire::test(ServicesList::class, [
|
$this->post(route('services.disable', [
|
||||||
'server' => $this->server,
|
'server' => $this->server,
|
||||||
])
|
'service' => $service->id,
|
||||||
->callTableAction('disable', $service->id)
|
]))
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$service->refresh();
|
$service->refresh();
|
||||||
|
|
||||||
@ -281,14 +276,13 @@ public function test_install_service(string $name, string $type, string $version
|
|||||||
$server->provider()->generateKeyPair();
|
$server->provider()->generateKeyPair();
|
||||||
}
|
}
|
||||||
|
|
||||||
Livewire::test(Index::class, [
|
$this->post(route('services.store', [
|
||||||
'server' => $server,
|
'server' => $server,
|
||||||
])
|
]), [
|
||||||
->callAction('install', [
|
|
||||||
'name' => $name,
|
'name' => $name,
|
||||||
'version' => $version,
|
'version' => $version,
|
||||||
])
|
])
|
||||||
->assertSuccessful();
|
->assertSessionDoesntHaveErrors();
|
||||||
|
|
||||||
$this->assertDatabaseHas('services', [
|
$this->assertDatabaseHas('services', [
|
||||||
'server_id' => $server->id,
|
'server_id' => $server->id,
|
||||||
@ -298,13 +292,23 @@ public function test_install_service(string $name, string $type, string $version
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array<array<string>>
|
||||||
|
*/
|
||||||
public static function data(): array
|
public static function data(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
['nginx'],
|
['nginx'],
|
||||||
|
['php'],
|
||||||
|
['supervisor'],
|
||||||
|
['redis'],
|
||||||
|
['mysql'],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array<array<string>>
|
||||||
|
*/
|
||||||
public static function installData(): array
|
public static function installData(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
@ -313,6 +317,11 @@ public static function installData(): array
|
|||||||
'webserver',
|
'webserver',
|
||||||
'latest',
|
'latest',
|
||||||
],
|
],
|
||||||
|
[
|
||||||
|
'caddy',
|
||||||
|
'webserver',
|
||||||
|
'latest',
|
||||||
|
],
|
||||||
[
|
[
|
||||||
'php',
|
'php',
|
||||||
'php',
|
'php',
|
||||||
|
Reference in New Issue
Block a user