2023-07-26 11:23:47 +00:00
< ? php
2023-12-07 18:06:32 +00:00
namespace App\Livewire\Project\New ;
2023-07-26 11:23:47 +00:00
2023-10-11 08:19:03 +00:00
use App\Models\Project ;
2023-07-26 11:23:47 +00:00
use App\Models\Server ;
2023-08-30 09:26:46 +00:00
use Illuminate\Support\Collection ;
2023-07-26 11:23:47 +00:00
use Livewire\Component ;
class Select extends Component
{
public $current_step = 'type' ;
2024-06-10 20:43:34 +00:00
2023-12-15 14:48:01 +00:00
public ? Server $server = null ;
2024-06-10 20:43:34 +00:00
2023-07-26 11:23:47 +00:00
public string $type ;
2024-06-10 20:43:34 +00:00
2023-07-26 11:23:47 +00:00
public string $server_id ;
2024-06-10 20:43:34 +00:00
2023-07-26 11:23:47 +00:00
public string $destination_uuid ;
2024-06-10 20:43:34 +00:00
2024-05-24 15:37:51 +00:00
public Collection | null | Server $allServers ;
2024-06-10 20:43:34 +00:00
2024-05-24 15:37:51 +00:00
public Collection | null | Server $servers ;
2024-06-10 20:43:34 +00:00
2025-01-07 09:43:21 +00:00
public bool $onlyBuildServerAvailable = false ;
2024-05-24 15:37:51 +00:00
public ? Collection $standaloneDockers ;
2024-06-10 20:43:34 +00:00
2024-05-24 15:37:51 +00:00
public ? Collection $swarmDockers ;
2024-06-10 20:43:34 +00:00
2023-07-26 11:23:47 +00:00
public array $parameters ;
2024-06-10 20:43:34 +00:00
2023-09-25 13:48:43 +00:00
public Collection | array $services = [];
2024-06-10 20:43:34 +00:00
2023-10-24 10:33:49 +00:00
public Collection | array $allServices = [];
2024-06-10 20:43:34 +00:00
2023-12-18 13:01:25 +00:00
public bool $isDatabase = false ;
2024-06-10 20:43:34 +00:00
2023-12-18 13:01:25 +00:00
public bool $includeSwarm = true ;
2023-10-24 10:33:49 +00:00
2023-09-25 13:48:43 +00:00
public bool $loadingServices = true ;
2024-06-10 20:43:34 +00:00
2023-09-27 19:51:06 +00:00
public bool $loading = false ;
2024-06-10 20:43:34 +00:00
2023-10-11 08:19:03 +00:00
public $environments = [];
2024-06-10 20:43:34 +00:00
2023-10-11 08:19:03 +00:00
public ? string $selectedEnvironment = null ;
2024-06-10 20:43:34 +00:00
2024-08-16 13:33:55 +00:00
public string $postgresql_type = 'postgres:16-alpine' ;
2023-09-05 10:14:31 +00:00
public ? string $existingPostgresqlUrl = null ;
2023-08-30 09:06:44 +00:00
protected $queryString = [
2023-12-15 14:48:01 +00:00
'server_id' ,
2023-08-30 09:06:44 +00:00
];
2023-09-26 12:45:52 +00:00
2023-07-26 11:23:47 +00:00
public function mount ()
{
2025-06-02 11:02:01 +00:00
try {
$this -> parameters = get_route_parameters ();
if ( isDev ()) {
$this -> existingPostgresqlUrl = 'postgres://coolify:password@coolify-db:5432' ;
}
$projectUuid = data_get ( $this -> parameters , 'project_uuid' );
$project = Project :: whereUuid ( $projectUuid ) -> firstOrFail ();
$this -> environments = $project -> environments ;
$this -> selectedEnvironment = $this -> environments -> where ( 'uuid' , data_get ( $this -> parameters , 'environment_uuid' )) -> firstOrFail () -> name ;
} catch ( \Exception $e ) {
return handleError ( $e , $this );
2023-09-05 10:14:31 +00:00
}
2023-07-26 11:23:47 +00:00
}
2024-06-10 20:43:34 +00:00
2023-10-24 10:33:49 +00:00
public function render ()
{
return view ( 'livewire.project.new.select' );
}
2023-08-08 09:51:36 +00:00
2023-10-11 08:19:03 +00:00
public function updatedSelectedEnvironment ()
{
2025-05-22 12:35:31 +00:00
$environmentUuid = $this -> environments -> where ( 'name' , $this -> selectedEnvironment ) -> first () -> uuid ;
2024-01-07 15:23:41 +00:00
return redirect () -> route ( 'project.resource.create' , [
2023-10-11 08:19:03 +00:00
'project_uuid' => $this -> parameters [ 'project_uuid' ],
2025-05-22 12:35:31 +00:00
'environment_uuid' => $environmentUuid ,
2023-12-27 15:45:01 +00:00
]);
2023-10-11 08:19:03 +00:00
}
2023-10-24 10:33:49 +00:00
2024-10-07 12:03:04 +00:00
public function loadServices ()
2024-10-05 18:55:23 +00:00
{
2025-02-04 12:30:12 +00:00
$services = get_service_templates ();
2024-10-05 18:55:23 +00:00
$services = collect ( $services ) -> map ( function ( $service , $key ) {
2024-11-25 21:08:51 +00:00
$default_logo = 'images/default.webp' ;
$logo = data_get ( $service , 'logo' , $default_logo );
$local_logo_path = public_path ( $logo );
2024-11-14 12:04:51 +00:00
2024-10-07 09:19:14 +00:00
return [
2024-10-05 18:55:23 +00:00
'name' => str ( $key ) -> headline (),
2024-11-14 12:04:51 +00:00
'logo' => asset ( $logo ),
2024-11-25 21:08:51 +00:00
'logo_github_url' => file_exists ( $local_logo_path )
? 'https://raw.githubusercontent.com/coollabsio/coolify/refs/heads/main/public/' . $logo
: asset ( $default_logo ),
2024-10-07 09:19:14 +00:00
] + ( array ) $service ;
2024-10-05 18:55:23 +00:00
}) -> all ();
$gitBasedApplications = [
[
'id' => 'public' ,
'name' => 'Public Repository' ,
'description' => 'You can deploy any kind of public repositories from the supported git providers.' ,
'logo' => asset ( 'svgs/git.svg' ),
],
[
'id' => 'private-gh-app' ,
'name' => 'Private Repository (with GitHub App)' ,
'description' => 'You can deploy public & private repositories through your GitHub Apps.' ,
'logo' => asset ( 'svgs/github.svg' ),
],
[
'id' => 'private-deploy-key' ,
'name' => 'Private Repository (with Deploy Key)' ,
'description' => 'You can deploy private repositories with a deploy key.' ,
'logo' => asset ( 'svgs/git.svg' ),
],
];
$dockerBasedApplications = [
[
'id' => 'dockerfile' ,
'name' => 'Dockerfile' ,
'description' => 'You can deploy a simple Dockerfile, without Git.' ,
'logo' => asset ( 'svgs/docker.svg' ),
],
[
'id' => 'docker-compose-empty' ,
'name' => 'Docker Compose Empty' ,
'description' => 'You can deploy complex application easily with Docker Compose, without Git.' ,
'logo' => asset ( 'svgs/docker.svg' ),
],
[
'id' => 'docker-image' ,
'name' => 'Docker Image' ,
'description' => 'You can deploy an existing Docker Image from any Registry, without Git.' ,
'logo' => asset ( 'svgs/docker.svg' ),
],
];
$databases = [
[
'id' => 'postgresql' ,
'name' => 'PostgreSQL' ,
'description' => 'PostgreSQL is an object-relational database known for its robustness, advanced features, and strong standards compliance.' ,
2024-11-25 14:33:38 +00:00
'logo' => ' < svg class = " w-[4.5rem] aspect-square h-[4.5rem] p-2 transition-all duration-200 dark:opacity-30 grayscale group-hover:grayscale-0 group-hover:opacity-100 dark:fill-white fill-black bg-black/10 dark:bg-white/10 " xmlns = " http://www.w3.org/2000/svg " viewBox = " 0 0 128 128 " >< path fill = " #currentColor " d = " M85.988 76.075c.632-5.262.443-6.034 4.362-5.182l.995.088c3.014.137 6.957-.485 9.272-1.561 4.986-2.313 7.942-6.177 3.026-5.162-11.215 2.313-11.986-1.483-11.986-1.483C103.5 45.204 108.451 22.9 104.178 17.44 92.524 2.548 72.35 9.59 72.012 9.773l-.108.021c-2.216-.461-4.695-.735-7.481-.78-5.075-.083-8.926 1.331-11.847 3.546 0 0-35.989-14.827-34.315 18.646.356 7.121 10.207 53.882 21.956 39.758 4.294-5.164 8.444-9.531 8.444-9.531 2.061 1.369 4.528 2.067 7.116 1.816l.2-.17c-.062.641-.035 1.268.081 2.01-3.027 3.383-2.137 3.977-8.189 5.222-6.122 1.262-2.525 3.508-.178 4.095 2.848.713 9.433 1.722 13.884-4.509l-.177.711c1.188.95 1.107 6.827 1.275 11.026.168 4.199.45 8.117 1.306 10.429.856 2.31 1.866 8.261 9.819 6.557 6.646-1.426 11.727-3.476 12.19-22.545 " />< path fill = " #currentColor " d = " M71.208 102.77c-3.518 0-5.808-1.36-7.2-2.674-2.1-1.981-2.933-4.534-3.43-6.059l-.215-.637c-1.002-2.705-1.341-6.599-1.542-11.613a199.25 199.25 0 01-.075-2.352c-.017-.601-.038-1.355-.068-2.146a15.157 15.157 0 01-3.997 1.264c-2.48.424-5.146.286-7.926-.409-1.961-.49-3.999-1.506-5.16-3.076-3.385 2.965-6.614 2.562-8.373 1.976-3.103-1.035-5.88-3.942-8.491-8.89-1.859-3.523-3.658-8.115-5.347-13.646-2.94-9.633-4.808-19.779-4.974-23.109-.522-10.427 2.284-17.883 8.34-22.16 9.555-6.749 24.03-2.781 29.307-.979 3.545-2.137 7.716-3.178 12.43-3.102 2.532.041 4.942.264 7.181.662 2.335-.734 6.949-1.788 12.23-1.723 9.73.116 17.793 3.908 23.316 10.966 3.941 5.036 1.993 15.61.48 21.466-2.127 8.235-5.856 16.996-10.436 24.622 1.244.009 3.045-.141 5.607-.669 5.054-1.044 6.531 1.666 6.932 2.879 1.607 4.867-5.378 8.544-7.557 9.555-2.792 1.297-7.343 2.086-11.071 1.915l-.163-.011-.979-.086-.097.816-.093.799c-.25 9.664-1.631 15.784-4.472 19.829-2.977 4.239-7.116 5.428-10.761 6.209a16.146 16.146 0 01-3.396.383zm-7.402-35.174c2.271 1.817 2.47 5.236 2.647 11.626.022.797.043 1.552.071 2.257.086 2.134.287 7.132 1.069 9.244.111.298.21.602.314.922.872 2.672 1.31 4.011 5.081 3.203 3.167-.678 4.794-1.287 6.068-3.101 1.852-2.638 2.888-7.941 3.078-15.767l3.852.094-3.826-.459.112-.955c.367-3.148.631-5.424 2.736-6.928 1.688-1.207 3.613-1.09 5.146-.814-1.684-1.271-2.15-2.765-2.274-3.377l-.321-1.582.902-1.34c5.2-7.716 9.489-17.199 11.767-26.018 2.34-9.062 1.626-13.875.913-14.785-9.446-12.071-25.829-7.088-27.539-6.521l-.29.156-1.45.271-.743-.154c-2.047-.425-4.321-.66-6.76-.7-3.831-.064-6.921.841-9.455 2.764l-1.758 1.333-2.041-.841c-4.358-1.782-17.162-5.365-23.918-.58-3.75 2.656-5.458 7.861-5.078 15.47.125 2.512 1.833 12.021 4.647 21.245 3.891 12.746 7.427 16.979 8.903 17.472.257.087.926-.433 1.591-1.231 4.326-5.203 8.44-9.54 8.613-9.723l2.231-2.347 2.697 1.792c1.087.723 2.286 1.132 3.518 1.209l6.433-5.486-.932 9.51c-.021.214-.031.504.053 1.044l.28 1.803-1.213 1.358-.14.157 3.534 1.632 1.482-1.853z " />< path fill = " #336791 " d = " M103.646 64.258c-11.216 2.313-11.987-1.484-11.987-1.484 11.842-17.571 16.792-39.876 12.52-45.335C92.524 2.547 72.35 9.59 72.013 9.773l-.109.019c-2.216-.459-4.695-.733-7.482-.778-5.075-.083-8.925 1.33-11.846 3.545 0 0-35.99-14.826-34.316 18.647.356 7.121 10.207 53.882 21.956 39.758 4.294-5.164 8.443-9.531 8.443-9.531 2.061 1.369 4.528 2.067 7.115 1.816l.201-.17c-.062.641-.034 1.268.08 2.01-3.026 3.383-2.138 3.977-8.188 5.222-6.123 1.262-2.526 3.508-.177 4.095 2.847.713 9.433 1.722 13.883-4.509l-.178.711c1.186.95 2.019 6.179 1.879 10.919s-.233 7.994.702 10.536c.935 2.541 1.866 8.261 9.82 6.557 6.646-1.425 10.09-5.116 10.57-11.272.34-4.377 1.109-3.73 1.158-7.644l.618-1.853c.711-5.934.113-7.848 4.208-6.957l.995.087c3.014.138 6.958-.485 9.273-1.561 4.986-2.314 7.943-6.177 3.028-5.162z " />< path fill = " #fff " d = " M71.61 100.394c-6.631.001-8.731-5.25-9.591-7.397-1.257-3.146-1.529-15.358-1.249-25.373a1.286 1.286 0 012.57.072c-.323 11.551.136 22.018 1.066 24.346 1.453 3.
2024-10-05 18:55:23 +00:00
' ,
],
[
'id' => 'mysql' ,
'name' => 'MySQL' ,
2024-10-08 08:53:03 +00:00
'description' => 'MySQL is an open-source relational database management system. ' ,
2024-11-25 14:33:38 +00:00
'logo' => ' < svg class = " w-[4.5rem] aspect-square h-[4.5rem] p-2 transition-all duration-200 dark:opacity-30 grayscale group-hover:grayscale-0 group-hover:opacity-100 dark:fill-white fill-black bg-black/10 dark:bg-white/10 " xmlns = " http://www.w3.org/2000/svg " viewBox = " 0 0 128 128 " >
2024-10-05 18:55:23 +00:00
< path fill = " currentColor " d = " M0 91.313h4.242V74.566l6.566 14.598c.773 1.77 1.832 2.391 3.914 2.391s3.098-.621 3.871-2.391l6.566-14.598v16.746h4.242V74.594c0-1.633-.652-2.422-2-2.828-3.223-1.004-5.383-.137-6.363 2.039l-6.441 14.41-6.238-14.41c-.937-2.176-3.14-3.043-6.359-2.039-1.348.406-2 1.195-2 2.828zM32.93 77.68h4.238v9.227c-.039.5.16 1.676 2.484 1.715h9.223V77.633h4.25c.02 0-.008 14.984-.008 15.047.023 3.695-4.582 4.496-6.707 4.559H33.02v-2.852l13.414-.004c2.73-.285 2.406-1.645 2.406-2.098v-1.113h-9.012c-4.195-.039-6.863-1.871-6.898-3.977-.004-.191.09-9.422 0-9.516zm0 0 " />
< path fill = " currentColor " d = " M56.391 91.313h12.195c1.426 0 2.813-.301 3.914-.816 1.836-.84 2.73-1.984 2.73-3.48v-3.098c0-1.223-1.016-2.367-3.016-3.125-1.059-.41-2.367-.625-3.629-.625h-5.141c-1.711 0-2.527-.516-2.73-1.656-.039-.137-.039-.246-.039-.383V76.2c0-.109 0-.219.039-.355.203-.867.652-1.113 2.16-1.25l.41-.027h12.109v-2.824H63.488c-1.711 0-2.609.109-3.426.352-2.527.789-3.629 2.039-3.629 4.215v2.473c0 1.902 2.16 3.535 5.789 3.914l1.223.055h4.406c.164 0 .324 0 .449.027 1.344.109 1.914.355 2.324.844.211.195.332.473.324.758v2.477c0 .297-.203.68-.609 1.004-.367.328-.98.543-1.793.598l-.449.027H56.391zm45.297-4.922c0 2.91 2.164 4.539 6.523 4.867l1.227.055h11.051v-2.828h-11.133c-2.488 0-3.426-.625-3.426-2.121V71.738h-4.238V86.39zm-23.75.148V76.457c0-2.559 1.801-4.113 5.355-4.602a7.976 7.976 0 0 1 1.145-.082h8.047c.41 0 .777.027 1.188.082 3.555.488 5.352 2.043 5.352 4.602v10.082c0 2.078-.762 3.188-2.523 3.914l4.18 3.77h-4.926l-3.379-3.051-3.402.215H84.44a9.23 9.23 0 0 1-2.492-.352c-2.699-.734-4.008-2.152-4.008-4.496zm4.578-.246c0 .137.039.273.082.438.246 1.172 1.348 1.824 3.023 1.824h3.852l-3.539-3.195h4.926l3.086 2.789c.57-.305.941-.766 1.074-1.363.039-.137.039-.273.039-.41v-9.668c0-.109 0-.246-.039-.383-.246-1.09-1.348-1.715-2.984-1.715h-6.414c-1.879 0-3.105.816-3.105 2.098zm0 0 " />
< path fill = " #00618A " d = " M124.219 67.047c-2.605-.07-4.598.172-6.301.891-.484.203-1.258.207-1.336.813.266.281.309.699.52 1.039.406.66 1.094 1.539 1.707 2l2.074 1.484c1.273.777 2.699 1.223 3.93 2 .723.461 1.441 1.039 2.148 1.559.348.254.582.656 1.039.816v-.074c-.238-.305-.301-.723-.52-1.039l-.965-.965c-.941-1.25-2.137-2.348-3.41-3.262-1.016-.727-3.281-1.711-3.707-2.891l-.074-.074c.719-.078 1.563-.34 2.223-.516 1.117-.301 2.113-.223 3.262-.52l1.559-.449v-.293c-.582-.598-.996-1.387-1.633-1.93-1.656-1.41-3.469-2.824-5.336-4.004-1.035-.652-2.312-1.074-3.41-1.629-.367-.187-1.016-.281-1.262-.594-.574-.734-.887-1.664-1.332-2.52l-2.668-5.633c-.562-1.285-.93-2.555-1.633-3.707-3.363-5.535-6.988-8.875-12.602-12.156-1.191-.699-2.633-.973-4.148-1.332l-2.449-.148c-.496-.211-1.012-.82-1.48-1.113-1.859-1.176-6.629-3.73-8.008-.371-.867 2.121 1.301 4.191 2.078 5.266.543.754 1.242 1.598 1.629 2.445.258.555.301 1.113.52 1.703.539 1.453 1.008 3.031 1.707 4.375.352.68.738 1.395 1.184 2 .273.371.742.539.816 1.113-.457.641-.484 1.633-.742 2.445-1.16 3.652-.723 8.191.965 10.898.516.828 1.734 2.609 3.41 1.926 1.465-.598 1.137-2.445 1.555-4.078.098-.367.039-.641.223-.887v.074l1.336 2.668c.988 1.59 2.738 3.25 4.223 4.371.773.582 1.379 1.59 2.375 1.93V68.6h-.074c-.195-.297-.496-.422-.742-.664-.582-.57-1.227-1.277-1.703-1.93-1.352-1.832-2.547-3.84-3.633-5.93-.52-.996-.973-2.098-1.41-3.113-.168-.391-.164-.984-.516-1.184-.48.742-1.187 1.344-1.559 2.223-.594 1.402-.668 3.117-.891 4.891l-.148.074c-1.031-.25-1.395-1.312-1.777-2.223-.973-2.305-1.152-6.02-.297-8.672.219-.687 1.219-2.852.813-3.484-.191-.633-.828-1-1.184-1.484a11.7 11.7 0 0 1-1.187-2.074c-.793-1.801-1.164-3.816-2-5.633-.398-.871-1.074-1.75-1.629-2.523-.617-.855-1.305-1.484-1.781-2.52-.168-.367-.398-.957-.148-1.336.078-.254.195-.359.445-.441.43-.332 1.629.109 2.074.293 1.191.496 2.184.965 3.191 1.633.48.32.969.941 1.555 1.113h.668c1.043.238 2.211.07 3.188.367 1.723.523 3.27 1.34 4.668 2.227 4.273 2.695 7.766 6.535 10.156 11.117.387.738.551 1.441.891 2.223.684 1.578 1.543 3.203 2.223 4.746s1.34 3.094 2.297 4.375c.504.672 2.453 1.031 3.336 1.406.621.262 1.637.535 2.223.891 1.125.676 2.211 1.48 3.266 2.223.523.375 2.141 1.188 2.223 1.855zM91.082 38.805a5.26 5.26 0 0 0-1.332.148v.074h.074c.258.535.715.879 1.035 1.336l.742 1.555.074-.07c.461-.324.668-.844.668-1.633-.187-.195-.211-.437-.371-.668-.211-.309-.621-.48-.891-.742zm0 0 " />
</ svg > ' ,
],
[
'id' => 'mariadb' ,
'name' => 'MariaDB' ,
2024-11-07 11:32:30 +00:00
'description' => 'MariaDB is a community-developed, commercially supported fork of the MySQL relational database management system, intended to remain free and open-source.' ,
2024-11-25 14:33:38 +00:00
'logo' => '<svg class="w-[4.5rem] aspect-square h-[4.5rem] p-2 transition-all duration-200 dark:opacity-30 grayscale group-hover:grayscale-0 group-hover:opacity-100 dark:fill-white fill-black bg-black/10 dark:bg-white/10" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path fill="currentColor" d="M127.434 12.182a1.727 1.727 0 0 0-1.174-.392c-1.168 0-2.68.793-3.495 1.218l-.322.165a11.095 11.095 0 0 1-4.365 1.1c-1.554.049-2.892.14-4.635.322-10.327 1.06-14.933 8.975-19.37 16.63-2.416 4.164-4.91 8.489-8.33 11.793a22.472 22.472 0 0 1-2.252 1.913c-3.54 2.631-7.985 4.51-11.443 5.84-3.329 1.273-6.964 2.417-10.474 3.524-3.219 1.012-6.255 1.97-9.048 3.008a96.902 96.902 0 0 1-3.275 1.14c-2.545.825-4.378 1.458-7.06 3.304a45.386 45.386 0 0 0-2.804 2.066 29.585 29.585 0 0 0-5.597 5.894 34.802 34.802 0 0 1-4.701 5.642c-.566.554-1.57.826-3.074.826-1.76 0-3.895-.363-6.154-.747-2.33-.413-4.738-.805-6.803-.805-1.677 0-2.962.273-3.92.826 0 0-1.617.942-2.298 2.16l.67.302a13.718 13.718 0 0 1 2.859 2.065 14.342 14.342 0 0 0 2.973 2.115 2.553 2.553 0 0 1 .918.582c-.281.413-.694.946-1.129 1.516-2.384 3.119-3.774 5.09-2.977 6.163a2.507 2.507 0 0 0 1.239.28c5.196 0 7.989-1.35 11.52-3.06 1.024-.495 2.066-1.004 3.305-1.528 2.065-.896 4.288-2.325 6.647-3.838 3.084-2.01 6.31-4.076 9.442-5.072a25.734 25.734 0 0 1 7.943-1.115c3.305 0 6.783.441 10.138.872 2.499.322 5.089.652 7.63.805.986.057 1.9.086 2.787.086a32.307 32.307 0 0 0 3.557-.185l.284-.1c1.781-1.094 2.617-3.444 3.425-5.717.52-1.462.96-2.775 1.652-3.61a1.054 1.054 0 0 1 .132-.11.166.166 0 0 1 .202.032v.066c-.412 8.885-3.99 14.527-7.608 19.543l-2.416 2.59s3.383 0 5.307-.744c7.024-2.099 12.324-6.725 16.181-14.103a60.185 60.185 0 0 0 2.549-5.82c.065-.165.673-.47.616.384-.021.252-.038.533-.059.827 0 .173 0 .35-.033.528-.1 1.24-.392 3.859-.392 3.859l2.169-1.162c5.229-3.304 9.26-9.97 12.318-20.343 1.272-4.321 2.205-8.613 3.027-12.392.983-4.545 1.83-8.44 2.801-9.952 1.524-2.37 3.85-3.973 6.101-5.53.306-.211.616-.414.917-.637 2.83-1.986 5.643-4.279 6.263-8.555v-.095c.45-3.189.07-4.002-.364-4.373zm-7.283 103.727h-10.327V97.92h9.315c3.56 0 6.952.67 6.902 4.66 0 2.813-1.747 3.59-3.589 3.886 2.615.224 4.188 1.892 4.188 4.586.017 4.035-3.523 4.858-6.489 4.858zm-.772-10.14c3.565 0 4.362-1.372 4.362-3.115 0-2.619-1.595-3.214-4.362-3.214h-7.402v6.328zm.099 1.52h-7.501v7.1h7.823c2.194 0 4.511-.723 4.511-3.486 0-3.19-2.665-3.615-4.833-3.615zm-31.497-9.37h8.125c6.828 0 10.24 3.764 10.19 8.994.05 5.436-3.716 8.997-9.591 8.997H87.98zm2.242 1.596v14.825h6.197c5.432 0 7.501-3.665 7.501-7.477 0-4.309-2.59-7.348-7.5-7.348zm-10.838 5.357v-2.095h3.404v13.132h-3.392v-2.114c-.896 1.52-2.739 2.391-4.982 2.391-4.684 0-7.303-3.305-7.303-7.105 0-3.664 2.479-6.609 6.804-6.609 2.454.029 4.498.855 5.469 2.4zm-8.675 4.387c0 2.416 1.52 4.485 4.462 4.485 2.841 0 4.386-2.02 4.386-4.411 0-2.392-1.599-4.436-4.544-4.436-2.828 0-4.3 2.04-4.3 4.362zm-10.013-9.947a1.722 1.722 0 0 1 1.818-1.768 1.788 1.788 0 0 1 1.847 1.821 1.714 1.714 0 0 1-1.847 1.744 1.743 1.743 0 0 1-1.818-1.797zm.15 3.465h3.39v9.596c0 .595.125 1.02.62 1.02a3.657 3.657 0 0 0 .648-.073l.525 2.478a5.931 5.931 0 0 1-2.242.414c-1.421 0-2.942-.414-2.942-3.64zM52.15 115.91h-3.386v-13.132h3.386v2.942a5.197 5.197 0 0 1 4.735-3.218 6.13 6.13 0 0 1 2.119.347l-.723 2.479a7.435 7.435 0 0 0-1.793-.249c-2.445 0-4.338 1.843-4.338 4.545zm-11.037-11.037v-2.095h3.392v13.132h-3.392v-2.114c-.896 1.52-2.738 2.391-4.982 2.391-4.688 0-7.303-3.305-7.303-7.105 0-3.664 2.479-6.609 6.804-6.609 2.466.029 4.51.855 5.481 2.4zm-8.675 4.387c0 2.416 1.52 4.485 4.462 4.485 2.838 0 4.383-2.02 4.383-4.411 0-2.391-1.595-4.436-4.544-4.436-2.826 0-4.296 2.04-4.296 4.362zm-9.24-11.34 4.651 17.99h-3.51L21.24 102.95 15.4 115.91h-2.965l-5.808-12.883-3.19 12.883H0l4.61-17.99h3.04l6.28 13.93 6.253-13.93z"/></svg>' ,
2024-10-05 18:55:23 +00:00
],
[
'id' => 'redis' ,
'name' => 'Redis' ,
2024-10-08 08:53:03 +00:00
'description' => 'Redis is a source-available, in-memory storage, used as a distributed, in-memory key– value database, cache and message broker, with optional durability.' ,
2024-11-25 14:33:38 +00:00
'logo' => '<svg class="w-[4.5rem] aspect-square h-[4.5rem] p-2 transition-all duration-200 dark:opacity-30 grayscale group-hover:grayscale-0 group-hover:opacity-100 dark:fill-white fill-black bg-black/10 dark:bg-white/10" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128"><path d="M21.4 97.6c0 1.8-1.5 3.5-3.5 3.5-1.5 0-2.8.4-4 1.3-1.3.8-2.2 1.9-3 3.2-1.6 2.1-2.4 4.6-2.7 5.5v12.5c0 1.9-1.6 3.5-3.6 3.5-1.9 0-3.5-1.6-3.5-3.5v-26c0-1.9 1.6-3.4 3.5-3.4 2 0 3.6 1.5 3.6 3.4v.5c.4-.5.9-1 1.4-1.3 2.2-1.4 5-2.6 8.3-2.6 2 0 3.5 1.5 3.5 3.4zm-1.9 13c.1-9 7-16.5 16.1-16.5 8.6 0 15.3 6.4 15.9 15.3v.3c0 .1 0 .5-.1.6-.2 1.6-1.6 2.6-3.4 2.6H27c.3 1.5 1.1 3.2 2.2 4.3 1.4 1.6 4 2.8 6.3 3 2.4.2 5.2-.4 6.8-1.6 1.4-1.4 4.1-1.3 4.9-.2.9.9 1.5 2.9 0 4.3-3.2 3-7.1 4.3-11.8 4.3-8.9 0-15.9-7.5-15.9-16.4zm7.1-3.2h18.6c-.7-2.6-4-6.5-9.7-7-5.6.2-8.3 4.3-8.9 7zm58.3 16.1c0 1.9-1.6 3.6-3.6 3.6-1.8 0-3.2-1.3-3.5-2.8-2.5 1.7-5.7 2.8-9 2.8-8.9 0-16-7.5-16-16.4 0-9 7.1-16.5 16-16.5 3.2 0 6.4 1.1 8.8 2.8V84.5c0-1.9 1.6-3.6 3.6-3.6s3.6 1.6 3.6 3.6v26.2l.1 12.8zm-16-22.2c-2.4 0-4.5 1-6.2 2.7-1.6 1.6-2.6 4-2.6 6.6 0 2.5 1 4.9 2.6 6.5 1.6 1.7 3.8 2.7 6.2 2.7 2.4 0 4.5-1 6.2-2.7 1.6-1.6 2.6-4 2.6-6.5 0-2.6-1-5-2.6-6.6-1.6-1.7-3.7-2.7-6.2-2.7zm28.6-15.4c0 2-1.5 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6v-1.4c0-2 1.6-3.6 3.6-3.6s3.6 1.6 3.6 3.6v1.4zm0 11.9v25.7c0 2-1.5 3.6-3.6 3.6-2 0-3.6-1.6-3.6-3.6V97.8c0-2.1 1.6-3.6 3.6-3.6 2.1 0 3.6 1.5 3.6 3.6zm4.5 19.8c1.2-1.6 3.5-1.8 4.9-.5 1.7 1.4 4.7 3 7.2 2.9 1.8 0 3.4-.6 4.5-1.3.9-.8 1.2-1.4 1.2-2 0-.3-.1-.5-.2-.7-.1-.2-.3-.5-.9-.8-.9-.7-2.9-1.4-5.3-1.8h-.1c-2-.4-4-.9-5.7-1.7-1.8-.9-3.4-2-4.5-3.8-.7-1.2-1.1-2.6-1.1-4.1 0-3 1.7-5.6 3.9-7.2 2.3-1.6 5.1-2.4 8.1-2.4 4.5 0 7.8 2.2 9.9 3.6 1.6 1.1 2 3.2 1.1 4.9-1.1 1.6-3.2 2-4.9.9-2.1-1.4-4-2.4-6.1-2.4-1.6 0-3.1.5-4 1.2-.9.6-1.1 1.2-1.1 1.5 0 .3 0 .3.1.5.1.1.3.4.7.7.9.6 2.6 1.2 4.8 1.6l.1.1h.1c2.2.4 4.2 1 6.1 1.9 1.8.8 3.6 2 4.7 3.9.8 1.3 1.3 2.8 1.3 4.3 0 3.2-1.8 5.9-4.1 7.6-2.4 1.6-5.3 2.6-8.6 2.6-5.1-.1-9.1-2.4-11.7-4.5-1.4-1.3-1.6-3.5-.4-5z" fill="#currentColor"/><path fill="#A41E11" d="M106.9 62.7c-5 2.6-30.7 13.2-36.2 16-5.5 2.9-8.5 2.8-12.8.8-4.4-2.1-31.7-13.1-36.7-15.5-2.5-1.2-3.8-2.2-3.8-3.1v-9.4s35.6-7.8 41.4-9.8c5.8-2.1 7.8-2.1 12.6-.3 4.9 1.8 34.2 7.1 39 8.8v9.3c.1.9-1 1.9-3.5 3.2z"/><path fill="#D82C20" d="M106.9 53.3c-5 2.6-30.7 13.2-36.2 16-5.5 2.9-8.5 2.8-12.8.8C53.5 68 26.2 57 21.2 54.6c-4.9-2.4-5-4-.2-5.9 4.8-1.9 32.1-12.6 37.8-14.6 5.8-2.1 7.8-2.1 12.6-.3 4.9 1.8 30.5 12 35.3 13.7 5 1.8 5.2 3.2.2 5.8z"/><path fill="#A41E11" d="M106.9 47.4c-5 2.6-30.7 13.2-36.2 16-5.5 2.9-8.5 2.8-12.8.8-4.4-2.1-31.7-13.2-36.7-15.5-2.5-1.2-3.8-2.2-3.8-3.1v-9.4s35.6-7.8 41.4-9.8c5.8-2.1 7.8-2.1 12.6-.3 4.9 1.8 34.2 7.1 39 8.8v9.3c.1.9-1 1.9-3.5 3.2z"/><path fill="#D82C20" d="M106.9 38c-5 2.6-30.7 13.2-36.2 16-5.5 2.9-8.5 2.8-12.8.8-4.3-2.1-31.7-13.1-36.6-15.5-4.9-2.4-5-4-.2-5.9 4.8-1.9 32.1-12.6 37.8-14.6 5.8-2.1 7.8-2.1 12.6-.3 4.9 1.8 30.5 12 35.3 13.7 4.9 1.7 5.1 3.2.1 5.8z"/><path fill="#A41E11" d="M106.9 31.5c-5 2.6-30.7 13.2-36.2 16-5.5 2.9-8.5 2.8-12.8.8-4.3-2.1-31.7-13.1-36.6-15.5-2.5-1.2-3.8-2.2-3.8-3.1v-9.4s35.6-7.8 41.4-9.8c5.8-2.1 7.8-2.1 12.6-.3 4.9 1.8 34.2 7.1 39 8.8v9.3c0 .8-1.1 1.9-3.6 3.2z"/><path fill="#D82C20" d="M106.9 22.1c-5 2.6-30.7 13.2-36.2 16-5.5 2.9-8.5 2.8-12.8.8-4.3-2.1-31.7-13.1-36.6-15.5s-5-4-.2-5.9c4.8-1.9 32.1-12.6 37.8-14.6C64.7.8 66.7.8 71.5 2.6c4.9 1.8 30.5 12 35.3 13.7 4.9 1.7 5.1 3.2.1 5.8z"/><path fill="#fff" d="M76.2 13l-8.1.8-1.8 4.4-2.9-4.9-9.3-.8L61 10l-2-3.8 6.5 2.5 6.1-2-1.7 4zM65.8 34.1l-15-6.3 21.6-3.3z"/><ellipse fill="#fff" cx="45" cy="19.9" rx="11.5" ry="4.5"/><path fill="#7A0C00" d="M85.7 14.2l12.8 5-12.8 5.1z"/><path fill="#AD2115" d="M71.6 19.8l14.1-5.6v10.1l-1.3.5z"/></svg>' ,
2024-10-05 18:55:23 +00:00
],
[
'id' => 'keydb' ,
'name' => 'KeyDB' ,
2024-10-08 08:53:03 +00:00
'description' => 'KeyDB is a database that offers high performance, low latency, and scalability for various data structures and workloads.' ,
2024-11-25 14:33:38 +00:00
'logo' => ' < div class = " w-[4.5rem] aspect-square h-[4.5rem] p-2 transition-all duration-200 dark:opacity-30 grayscale group-hover:grayscale-0 group-hover:opacity-100 dark:fill-white fill-black bg-black/10 dark:bg-white/10 " >< svg version = " 1.1 " width = " 180 " height = " 60 " id = " svg1326 " viewBox = " 0 0 544 182 " sodipodi : docname = " keydb.svg " inkscape : version = " 1.1.1 (3bf5ae0d25, 2021-09-20) " xmlns : inkscape = " http://www.inkscape.org/namespaces/inkscape " xmlns : sodipodi = " http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd " xmlns = " http://www.w3.org/2000/svg " xmlns : svg = " http://www.w3.org/2000/svg " >< defs id = " defs1330 " />< sodipodi : namedview id = " namedview1328 " pagecolor = " currentColor " bordercolor = " #666666 " borderopacity = " 1.0 " inkscape : pageshadow = " 2 " inkscape : pageopacity = " 0.00784314 " inkscape : pagecheckerboard = " true " showgrid = " false " inkscape : zoom = " 1.5064209 " inkscape : cx = " 374.06544 " inkscape : cy = " 123.80338 " inkscape : window - width = " 1536 " inkscape : window - height = " 889 " inkscape : window - x = " -8 " inkscape : window - y = " -8 " inkscape : window - maximized = " 1 " inkscape : current - layer = " svg1326 " width = " 791px " />< path d = " M 78.589334,169.85617 12.63903,131.77977 c -1.0281,-0.591 -1.6035,-1.6659 -1.6046,-2.7722 h -0.0134 V 52.833267 c 0,-1.2966 0.7688,-2.4135 1.8749,-2.9206 l 65.739904,-37.9545 c 1.0386,-0.5966 2.2717,-0.5456 3.2321,0.0264 l 65.951096,38.0761 c 1.0282,0.591 1.6042,1.6659 1.6047,2.7726 h 0.0134 v 76.174303 c 0,1.2962 -0.7685,2.4137 -1.8743,2.9202 l -65.740496,37.9554 c -1.0389,0.5964 -2.2717,0.5453 -3.233,-0.027 z M 17.44353,127.16987 v 0 l 62.785704,36.2488 62.785996,-36.2488 V 54.671267 l -62.785996,-36.2489 -62.785704,36.2489 z " style = " fill:currentColor;fill-rule:evenodd " id = " path1290 " />< path d = " M 80.229234,14.730167 14.23273,129.00757 h 131.9933 z " style = " opacity:.88;fill:#ff0;fill-opacity:1;fill-rule:evenodd " id = " path1292 " />< path d = " M 80.229234,21.136467 19.78603,125.79677 h 120.8861 z M 11.45983,127.40197 v 0 L 77.433934,13.163767 c 0.2713,-0.4856 0.6733,-0.9068 1.1895,-1.2056 1.531,-0.8864 3.4908,-0.3645 4.3778,1.1671 L 148.88863,127.21177 c 0.3464,0.5125 0.5485,1.1308 0.5485,1.7958 0,1.7733 -1.4378,3.2111 -3.2108,3.2111 H 14.23213 v -0.007 c -0.5459,5e-4 -1.099,-0.1386 -1.6052,-0.4318 -1.531,-0.8863 -2.0537,-2.8465 -1.1671,-4.3778 z " style = " fill:currentColor;fill-rule:evenodd " id = " path1294 " />< path d = " m 12.63903,55.605567 c -1.5309,-0.8799 -2.059,-2.8347 -1.1792,-4.3657 0.8802,-1.531 2.8347,-2.0591 4.3657,-1.1792 L 80.229234,87.229065 144.63323,50.060667 c 1.531,-0.8799 3.4855,-0.3518 4.3651,1.1792 0.8796,1.531 0.3517,3.4858 -1.1793,4.3657 L 81.867334,93.666065 c -0.9603,0.5723 -2.1931,0.6227 -3.2315,0.026 z " style = " opacity:1;fill:currentColor;fill-rule:evenodd " id = " path1296 " />< path d = " m 83.440034,167.11087 c 0,1.773 -1.4377,3.2111 -3.2108,3.2111 -1.7736,0 -3.2114,-1.4381 -3.2114,-3.2111 V 90.920065 c 0,-1.773 1.4378,-3.2111 3.2114,-3.2111 1.7731,0 3.2108,1.4381 3.2108,3.2111 z " style = " fill:currentColor;fill-rule:evenodd " id = " path1298 " />< path d = " m 146.22633,137.25697 c 4.5555,0 8.2491,-3.693 8.2491,-8.2494 0,-4.5564 -3.6936,-8.2491 -8.2491,-8.2491 -4.5564,0 -8.2503,3.6927 -8.2503,8.2491 0,4.5564 3.6939,8.2494 8.2503,8.2494 z " style = " fill:currentColor;fill-rule:evenodd " id = " path1300 " />< path d = " m 146.22633,61.082867 c 4.5555,0 8.2491,-3.6938 8.2491,-8.2496 0,-4.5562 -3.6936,-8.2494 -8.2491,-8.2494 -4.5564,0 -8.2503,3.6932 -8.2503,8.2494 0,4.5558 3.6939,8.2496 8.2503,8.2496 z " style = " fill:currentColor;fill-rule:evenodd " id = " path1302 " />< path d = " m 14.23213,61.082867 c 4.5561,0 8.25,-3.6938 8.25,-8.2496 0,-4.5562 -3.6939,-8.2494 -8.25,-8.2494 -4.5555003,0 -8.2494003,3.6932 -8.2494003,8.2494 0,4.5558 3.6939,8.2496 8.2494003,8.2496 z " style = " fill:currentColor;fill-rule:evenodd " id = " path1304 " />< path d = " m 14.23213,137.25697 c 4.5561,0 8.25,-3.693 8.25,-8.2494 0,-4.5564 -3.6939,-8.2491 -8.25,-8.2491 -4.5555003,0 -8.2494003,3.6927 -8.2494003,8.2491 0,4.5564 3.6939,8.2494 8.2494003,8.2494 z " style = " fill:currentColor;fill-rule:evenodd " id = " path1306 " />< path d = " m 80.229234,175.36027 c 4.5558,0 8.2497,-3.6933 8.2497,-8.2494 0,-4.5562 -3.6939,-8.2494 -8.2
2024-10-05 18:55:23 +00:00
],
[
'id' => 'dragonfly' ,
'name' => 'Dragonfly' ,
2024-10-08 08:53:03 +00:00
'description' => 'Dragonfly DB is a drop-in Redis replacement that delivers 25x more throughput and 12x faster snapshotting than Redis.' ,
2024-11-25 14:33:38 +00:00
'logo' => ' < div class = " w-[4.5rem] aspect-square h-[4.5rem] p-2 transition-all duration-200 dark: opacity-30 grayscale group-hover:grayscale-0 group-hover:opacity-100 dark:fill-white fill-black bg-black/10 dark:bg-white/10 " >< svg class = " block dark:hidden " width = " 245 " height = " 60 " viewBox = " 0 0 210 50 " fill = " none " xmlns = " http://www.w3.org/2000/svg " >< path fill - rule = " evenodd " clip - rule = " evenodd " d = " M22 0C3.883 0 0 3.883 0 22C0 40.117 3.883 44 22 44C40.117 44 44 40.117 44 22C44 3.883 40.117 0 22 0ZM19.5585 16.265C19.8224 16.406 20 16.7008 20 17C20 18.1046 20.8954 19 22 19C23.1046 19 24 18.1046 24 17C24 16.7008 24.1776 16.406 24.4414 16.265C25.0714 15.9283 25.5 15.2642 25.5 14.5C25.5 13.3954 24.6046 12.5 23.5 12.5C23.3071 12.5 23.1205 12.5273 22.944 12.5783C22.3661 12.7452 21.6339 12.7452 21.056 12.5783C20.8794 12.5273 20.6929 12.5 20.5 12.5C19.3954 12.5 18.5 13.3954 18.5 14.5C18.5 15.2642 18.9286 15.9283 19.5585 16.265ZM20.3087 18.8411C20.2282 18.8977 20.1644 18.978 20.1283 19.0744L19.6243 20.4185C19.5438 20.633 19.5395 20.8686 19.6119 21.0859L20.4253 23.526C20.4744 23.6733 20.5566 23.8087 20.687 23.893C20.9154 24.0408 21.3531 24.25 22 24.25C22.6468 24.25 23.0845 24.0408 23.3129 23.893C23.4433 23.8087 23.5255 23.6733 23.5746 23.526L24.388 21.0859C24.4604 20.8686 24.4561 20.633 24.3756 20.4185L23.8716 19.0744C23.8355 18.978 23.7717 18.8977 23.6912 18.8411C23.2461 19.2502 22.6522 19.5 22 19.5C21.3477 19.5 20.7538 19.2502 20.3087 18.8411ZM21 30L20.5105 24.3712C20.8174 24.5497 21.3156 24.75 22 24.75C22.6842 24.75 23.1825 24.5498 23.4895 24.3711L23 30C23 30 22.75 30.25 22 30.25C21.25 30.25 21 30 21 30ZM21.25 34L21.0055 30.5779L21.0331 30.5892C21.2547 30.6779 21.5686 30.75 22 30.75C22.4314 30.75 22.7453 30.6779 22.967 30.5892L22.9944 30.578L22.75 34C22.75 34 22.625 34.5 22 34.5C21.375 34.5 21.25 34 21.25 34ZM9.24995 20H19.2C18.8224 20.6294 18.9914 21.0678 19.1582 21.5005L19.1582 21.5005L19.1582 21.5006L19.1582 21.5006L19.1582 21.5006L19.1582 21.5006C19.1901 21.5835 19.222 21.6662 19.25 21.75L9.90851 24.4252C9.31202 24.5932 8.67362 24.3772 8.3018 23.8814L7.71391 23.0976C7.37302 22.643 7.31818 22.0349 7.57227 21.5267L7.92108 20.8291C8.17311 20.3251 8.68641 20.0048 9.24995 20ZM7.99998 19.2331L19.375 19.5C19.375 19.5 19.5546 19.0506 19.625 18.75C19.6491 18.647 19.6745 18.5441 19.6961 18.4586C19.7264 18.3386 19.6699 18.2154 19.5562 18.1662C18.2312 17.5935 10.5221 14.2625 9.23721 13.7331C8.73807 13.5197 8.16257 13.5926 7.73242 13.9238L6.58499 14.8072C6.20854 15.097 5.99872 15.5412 5.99998 16C6.00037 16.1456 6.02204 16.2928 6.06639 16.4369L6.62254 18.2331C6.80943 18.8405 7.36503 19.2067 7.99998 19.2331ZM34.75 20H24.8C25.1776 20.6294 25.0086 21.0679 24.8418 21.5005L24.8418 21.5005L24.8418 21.5006L24.8418 21.5006C24.8098 21.5835 24.7779 21.6662 24.75 21.75L34.0914 24.4252C34.6879 24.5932 35.3263 24.3772 35.6982 23.8814L36.286 23.0976C36.6269 22.643 36.6818 22.0349 36.4277 21.5267L36.0789 20.8291C35.8268 20.3251 35.3135 20.0048 34.75 20ZM36 19.2331L24.625 19.5C24.625 19.5 24.4453 19.0506 24.375 18.75C24.3509 18.647 24.3255 18.5441 24.3039 18.4586C24.2735 18.3386 24.3301 18.2154 24.4438 18.1662C25.7688 17.5935 33.4779 14.2625 34.7627 13.7331C35.2619 13.5197 35.8374 13.5926 36.2675 13.9238L37.415 14.8072C37.7914 15.097 38.0012 15.5412 38 16C37.9996 16.1456 37.9779 16.2928 37.9336 16.4369L37.3774 18.2331C37.1905 18.8405 36.6349 19.2067 36 19.2331Z " fill = " black " /></ svg >< svg class = " hidden dark:block " xmlns = " http://www.w3.org/2000/svg " width = " 225 " height = " 55 " viewBox = " 0 0 378 88 " fill = " none " >< path fill - rule = " evenodd " clip - rule = " evenodd " d = " M44 0C7.766 0 0 7.766 0 44C0 80.234 7.766 88 44 88C80.234 88 88 80.234 88 44C88 7.766 80.234 0 44 0ZM39.1171 32.53C39.6448 32.8121 40 33.4016 40 34C40 36.2091 41.7909 38 44 38C46.2091 38 48 36.2091 48 34C48 33.4016 48.3552 32.8121 48.8829 32.53C50.1428 31.8566 51 30.5284 51 29C51 26.7909 49.2091 25 47 25C46.6142 25 46.2411 25.0546 45.8881 25.1566C44.7322 25.4904 43.2678 25.4904 42.1119 25.1566C41.7589 25.0546 41.3858 25 41 25C38.7909 25 37 26.7909 37 29C37 30.5284 37.8572 31.8566 39.1171 32.53ZM40
2024-10-05 18:55:23 +00:00
],
[
'id' => 'mongodb' ,
'name' => 'MongoDB' ,
2024-10-08 08:53:03 +00:00
'description' => 'MongoDB is a source-available, cross-platform, document-oriented database program.' ,
2024-11-25 14:33:38 +00:00
'logo' => ' < svg class = " w-[4.5rem] aspect-square h-[4.5rem] p-2 transition-all duration-200 dark:opacity-30 grayscale group-hover:grayscale-0 group-hover:opacity-100 dark:fill-white fill-black bg-black/10 dark:bg-white/10 " xmlns = " http://www.w3.org/2000/svg " viewBox = " 0 0 128 128 " >< path fill - rule = " evenodd " clip - rule = " evenodd " fill = " currentColor " d = " M87.259 100.139c.169-.325.331-.612.469-.909.087-.19.221-.228.41-.223 1.133.032 2.266.067 3.4.078.963.01 1.928-.008 2.892-.019 1.086-.013 2.172-.07 3.257-.039 1.445.042 2.853.325 4.16.968 1.561.769 2.742 1.94 3.547 3.483a8.71 8.71 0 01.931 3.14c.172 1.608.059 3.179-.451 4.717-.632 1.906-1.832 3.365-3.499 4.458-1.283.841-2.69 1.338-4.198 1.622-1.596.301-3.197.204-4.798.209-1.756.007-3.511-.031-5.267-.051-.307-.003-.351-.061-.27-.354l.075-.27c.171-.538.263-.562.809-.652a2.83 2.83 0 001.087-.413c.184-.122.26-.44.332-.685.062-.214.065-.449.067-.675.025-3.425.051-6.849.065-10.272a44.077 44.077 0 00-.065-2.596c-.034-.605-.357-1.019-1.077-1.162-.56-.111-1.124-.197-1.687-.296l-.189-.059zm16.076 8.293c-.076-.682-.113-1.37-.235-2.042-.292-1.613-.998-3.018-2.238-4.119-2.005-1.779-4.419-2.053-6.949-1.841-.576.048-.7.245-.709.837-.014.84-.028 1.68-.029 2.52-.004 2.664-.004 5.328 0 7.992.001.758.009 1.516.031 2.272.024.774.305 1.429 1.063 1.729 1.195.473 2.452.529 3.706.336 2.003-.307 3.404-1.474 4.344-3.223.744-1.388.954-2.903 1.016-4.461zm4.869 9.071c-.024-.415.146-.758.356-1.073.057-.085.253-.081.388-.108l1.146-.227c.405-.086.618-.358.675-.755.038-.262.074-.527.077-.792a879.6 879.6 0 00.059-6.291c.01-2.1.002-4.2.002-6.3l-.009-.401c-.041-.675-.367-1.025-1.037-1.124l-1.453-.221c-.179-.024-.244-.11-.179-.269.112-.271.219-.552.377-.796.059-.09.258-.125.392-.122.694.01 1.388.062 2.082.061l6.041-.036c1.164-.001 2.288.202 3.332.759 1.149.612 1.792 1.559 1.976 2.849.192 1.355-.219 2.497-1.209 3.404-.407.374-.934.618-1.406.922l-.154.096c.438.161.855.3 1.261.466 1.188.487 2.133 1.248 2.633 2.463.395.959.395 1.959.161 2.953-.364 1.556-1.389 2.591-2.722 3.374-1.251.735-2.605 1.163-4.047 1.235-1.33.067-2.666.042-3.999.057l-.772.004a996.106 996.106 0 01-3.854-.096l-.117-.032zm5.537-6.089h.013c0 .658-.009 1.316.003 1.974.008.426-.007.864.085 1.274.138.613.418 1.166 1.106 1.342a6.671 6.671 0 002.818.124c1.177-.205 2.116-.795 2.631-1.916.382-.833.439-1.716.308-2.618-.174-1.188-.805-2.05-1.854-2.615-.688-.371-1.422-.598-2.204-.628-.876-.033-1.753-.035-2.629-.062-.246-.007-.28.118-.279.32.005.934.002 1.869.002 2.805zm1.865-4.475c.479-.024 1.021-.031 1.56-.085 1.032-.103 1.759-.622 2.138-1.609.193-.501.185-1.017.19-1.538.015-1.357-.777-2.469-2.066-2.929-.995-.355-2.021-.361-3.053-.333-.418.011-.605.194-.611.615l-.062 5.489c-.003.218.091.312.303.319l1.601.071z " />< path fill - rule = " evenodd " clip - rule = " evenodd " fill = " currentColor " d = " M10.543 116.448l-.073.944c-.68 0-1.307-.005-1.934.002-1.181.012-2.362.031-3.544.048l-.114.007c-.169-.02-.476-.02-.484-.07-.05-.281-.034-.576-.021-.867.001-.033.116-.075.183-.091l.919-.205c.573-.149.775-.396.802-.988.031-.667.062-1.335.065-2.002.009-1.642-.001-3.282.006-4.924.001-.384-.132-.67-.49-.826a43.787 43.787 0 00-1.285-.546c-.204-.082-.469-.127-.445-.401.024-.279.281-.352.523-.407 1.002-.229 2.005-.452 3.004-.696.322-.079.63-.212 1.015-.346.02.208.057.406.053.604l-.059.941c-.001.106.054.248.133.307.048.037.209-.03.289-.092.854-.65 1.758-1.211 2.789-1.538 1.597-.507 2.968-.037 3.928 1.34.338.485.339.485.808.146.805-.585 1.647-1.101 2.589-1.441 2.068-.747 4.055.201 4.774 2.284.262.756.362 1.537.36 2.335l-.019 5.298c-.001.437.144.686.56.822.467.153.951.258 1.477.396l-.122.911c-.598 0-1.148-.004-1.698.001-1.344.012-2.688.019-4.031.05-.234.006-.295-.052-.307-.271-.039-.701-.045-.7.615-.858l.222-.057c.645-.176.86-.374.865-1.028.015-1.878.054-3.761-.041-5.635-.099-1.944-1.642-2.979-3.526-2.481a5.194 5.194 0 00-1.69.814c-.175.125-.208.269-.194.488.053.828.086 1.657.093 2.486.012 1.451-.006 2.902 0 4.354.002.588.203.813.784.949l.863.199.16.036c.012.276.023.552.01.828-.008.173-.142.188-.292.185-.839-.021-1.679-.049-2.518-.047-1.021.002-2.041.031-3.061.049h-.24c0-.293-.014
2024-10-05 18:55:23 +00:00
],
[
'id' => 'clickhouse' ,
'name' => 'ClickHouse' ,
2024-10-08 08:53:03 +00:00
'description' => 'ClickHouse is a column-oriented database that supports real-time analytics, business intelligence, observability, ML and GenAI, and more.' ,
2024-11-25 14:33:38 +00:00
'logo' => '<div class="w-[4.5rem] aspect-square h-[4.5rem] p-2 transition-all duration-200 dark:opacity-30 grayscale group-hover:grayscale-0 group-hover:opacity-100 dark:fill-white fill-black bg-black/10 dark:bg-white/10"><svg width="215" height="90" viewBox="0 0 100 43" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_378_10860)"><rect x="2.70837" y="2.875" width="2.24992" height="20.2493" rx="0.236664" fill="currentColor"/><rect x="7.2085" y="2.875" width="2.24992" height="20.2493" rx="0.236664" fill="currentColor"/><rect x="11.7086" y="2.875" width="2.24992" height="20.2493" rx="0.236664" fill="currentColor"/><rect x="16.2076" y="2.875" width="2.24992" height="20.2493" rx="0.236664" fill="currentColor"/><rect x="20.7087" y="10.7502" width="2.24992" height="4.49985" rx="0.236664" fill="currentColor"/></g></svg></div>' ,
2024-10-05 18:55:23 +00:00
],
];
return [
'services' => $services ,
'gitBasedApplications' => $gitBasedApplications ,
'dockerBasedApplications' => $dockerBasedApplications ,
'databases' => $databases ,
];
}
2023-12-18 13:01:25 +00:00
public function instantSave ()
{
if ( $this -> includeSwarm ) {
$this -> servers = $this -> allServers ;
} else {
2025-01-07 14:31:43 +00:00
if ( $this -> allServers instanceof Collection ) {
$this -> servers = $this -> allServers -> where ( 'settings.is_swarm_worker' , false ) -> where ( 'settings.is_swarm_manager' , false ) -> where ( 'settings.is_build_server' , false );
} else {
$this -> servers = $this -> allServers ;
}
2023-12-18 13:01:25 +00:00
}
}
2024-06-10 20:43:34 +00:00
2023-09-05 10:14:31 +00:00
public function setType ( string $type )
2023-07-26 11:23:47 +00:00
{
2024-10-07 10:11:56 +00:00
$type = str ( $type ) -> lower () -> slug () -> value ();
2024-06-10 20:43:34 +00:00
if ( $this -> loading ) {
2025-01-07 14:31:43 +00:00
return ;
2024-06-10 20:43:34 +00:00
}
2023-09-27 19:51:06 +00:00
$this -> loading = true ;
2023-12-18 13:01:25 +00:00
$this -> type = $type ;
switch ( $type ) {
case 'postgresql' :
case 'mysql' :
case 'mariadb' :
case 'redis' :
2024-04-10 13:00:46 +00:00
case 'keydb' :
case 'dragonfly' :
case 'clickhouse' :
2023-12-18 13:01:25 +00:00
case 'mongodb' :
$this -> isDatabase = true ;
$this -> includeSwarm = false ;
2024-05-24 15:37:51 +00:00
if ( $this -> allServers instanceof Collection ) {
$this -> servers = $this -> allServers -> where ( 'settings.is_swarm_worker' , false ) -> where ( 'settings.is_swarm_manager' , false ) -> where ( 'settings.is_build_server' , false );
} else {
$this -> servers = $this -> allServers ;
}
2023-12-18 13:01:25 +00:00
break ;
}
2023-12-21 07:46:48 +00:00
if ( str ( $type ) -> startsWith ( 'one-click-service' ) || str ( $type ) -> startsWith ( 'docker-compose-empty' )) {
2023-12-18 13:01:25 +00:00
$this -> isDatabase = true ;
$this -> includeSwarm = false ;
2024-05-24 15:37:51 +00:00
if ( $this -> allServers instanceof Collection ) {
$this -> servers = $this -> allServers -> where ( 'settings.is_swarm_worker' , false ) -> where ( 'settings.is_swarm_manager' , false ) -> where ( 'settings.is_build_server' , false );
} else {
$this -> servers = $this -> allServers ;
}
2023-12-18 13:01:25 +00:00
}
2024-06-10 20:43:34 +00:00
if ( $type === 'existing-postgresql' ) {
2023-09-05 10:14:31 +00:00
$this -> current_step = $type ;
2024-06-10 20:43:34 +00:00
2025-01-07 14:31:43 +00:00
return ;
2023-09-05 10:14:31 +00:00
}
2024-06-21 12:35:05 +00:00
if ( count ( $this -> servers ) === 1 ) {
$server = $this -> servers -> first ();
if ( $server instanceof Server ) {
$this -> setServer ( $server );
}
}
2024-06-10 20:43:34 +00:00
if ( ! is_null ( $this -> server )) {
2023-12-15 14:48:01 +00:00
$foundServer = $this -> servers -> where ( 'id' , $this -> server -> id ) -> first ();
2023-08-30 09:06:44 +00:00
if ( $foundServer ) {
2023-09-05 10:14:31 +00:00
return $this -> setServer ( $foundServer );
2023-08-30 09:06:44 +00:00
}
}
2023-07-26 11:23:47 +00:00
$this -> current_step = 'servers' ;
}
2023-08-08 09:51:36 +00:00
2023-09-05 10:14:31 +00:00
public function setServer ( Server $server )
2023-07-26 11:23:47 +00:00
{
$this -> server_id = $server -> id ;
2023-12-15 14:48:01 +00:00
$this -> server = $server ;
2023-08-30 09:26:46 +00:00
$this -> standaloneDockers = $server -> standaloneDockers ;
$this -> swarmDockers = $server -> swarmDockers ;
2024-06-21 12:35:05 +00:00
$count = count ( $this -> standaloneDockers ) + count ( $this -> swarmDockers );
if ( $count === 1 ) {
$docker = $this -> standaloneDockers -> first () ? ? $this -> swarmDockers -> first ();
if ( $docker ) {
$this -> setDestination ( $docker -> uuid );
2024-08-16 13:33:55 +00:00
return $this -> whatToDoNext ();
2024-06-21 12:35:05 +00:00
}
}
2023-07-26 11:23:47 +00:00
$this -> current_step = 'destinations' ;
}
2023-08-08 09:51:36 +00:00
2023-09-05 10:14:31 +00:00
public function setDestination ( string $destination_uuid )
2023-07-26 11:23:47 +00:00
{
$this -> destination_uuid = $destination_uuid ;
2024-06-10 20:43:34 +00:00
2024-08-16 13:33:55 +00:00
return $this -> whatToDoNext ();
}
public function setPostgresqlType ( string $type )
{
$this -> postgresql_type = $type ;
2024-01-07 15:23:41 +00:00
return redirect () -> route ( 'project.resource.create' , [
2023-07-26 11:23:47 +00:00
'project_uuid' => $this -> parameters [ 'project_uuid' ],
2024-11-22 15:03:20 +00:00
'environment_uuid' => $this -> parameters [ 'environment_uuid' ],
2023-07-26 11:23:47 +00:00
'type' => $this -> type ,
'destination' => $this -> destination_uuid ,
2023-09-21 15:48:31 +00:00
'server_id' => $this -> server_id ,
2024-08-16 13:33:55 +00:00
'database_image' => $this -> postgresql_type ,
2023-12-08 11:12:44 +00:00
]);
2023-07-26 11:23:47 +00:00
}
2023-08-08 09:51:36 +00:00
2024-08-16 13:33:55 +00:00
public function whatToDoNext ()
{
if ( $this -> type === 'postgresql' ) {
$this -> current_step = 'select-postgresql-type' ;
} else {
return redirect () -> route ( 'project.resource.create' , [
'project_uuid' => $this -> parameters [ 'project_uuid' ],
2024-11-22 15:03:20 +00:00
'environment_uuid' => $this -> parameters [ 'environment_uuid' ],
2024-08-16 13:33:55 +00:00
'type' => $this -> type ,
'destination' => $this -> destination_uuid ,
'server_id' => $this -> server_id ,
]);
}
}
2023-09-25 13:48:43 +00:00
public function loadServers ()
2023-07-26 11:23:47 +00:00
{
2024-11-04 13:33:10 +00:00
$this -> servers = Server :: isUsable () -> get () -> sortBy ( 'name' );
2023-12-18 13:01:25 +00:00
$this -> allServers = $this -> servers ;
2025-01-07 09:43:21 +00:00
if ( $this -> allServers && $this -> allServers -> isNotEmpty ()) {
$this -> onlyBuildServerAvailable = $this -> allServers -> every ( function ( $server ) {
return $server -> isBuildServer ();
});
}
2023-07-26 11:23:47 +00:00
}
}