2017-09-26 02:43:01 +00:00
|
|
|
{{-- Pterodactyl - Panel --}}
|
2017-03-05 21:37:38 +00:00
|
|
|
{{-- Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com> --}}
|
|
|
|
|
2017-09-26 02:43:01 +00:00
|
|
|
{{-- This software is licensed under the terms of the MIT license. --}}
|
|
|
|
{{-- https://opensource.org/licenses/MIT --}}
|
2017-03-05 21:37:38 +00:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
|
|
|
@section('title')
|
|
|
|
Server — {{ $server->name }}: Databases
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content-header')
|
|
|
|
<h1>{{ $server->name }}<small>Manage server databases.</small></h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li><a href="{{ route('admin.index') }}">Admin</a></li>
|
|
|
|
<li><a href="{{ route('admin.servers') }}">Servers</a></li>
|
|
|
|
<li><a href="{{ route('admin.servers.view', $server->id) }}">{{ $server->name }}</a></li>
|
|
|
|
<li class="active">Databases</li>
|
|
|
|
</ol>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
2019-12-17 05:14:27 +00:00
|
|
|
@include('admin.servers.partials.navigation')
|
2017-03-05 21:37:38 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-7">
|
2017-10-19 03:32:19 +00:00
|
|
|
<div class="alert alert-info">
|
2019-11-24 20:50:16 +00:00
|
|
|
Database passwords can be viewed when <a href="/server/{{ $server->uuidShort }}/databases">visiting this server</a> on the front-end.
|
2017-10-19 03:32:19 +00:00
|
|
|
</div>
|
2017-03-05 21:37:38 +00:00
|
|
|
<div class="box box-primary">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h3 class="box-title">Active Databases</h3>
|
|
|
|
</div>
|
|
|
|
<div class="box-body table-responsible no-padding">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<tr>
|
|
|
|
<th>Database</th>
|
|
|
|
<th>Username</th>
|
|
|
|
<th>Connections From</th>
|
|
|
|
<th>Host</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
@foreach($server->databases as $database)
|
|
|
|
<tr>
|
|
|
|
<td>{{ $database->database }}</td>
|
|
|
|
<td>{{ $database->username }}</td>
|
|
|
|
<td>{{ $database->remote }}</td>
|
|
|
|
<td><code>{{ $database->host->host }}:{{ $database->host->port }}</code></td>
|
|
|
|
<td class="text-center">
|
|
|
|
<button data-action="reset-password" data-id="{{ $database->id }}" class="btn btn-xs btn-primary"><i class="fa fa-refresh"></i></button>
|
|
|
|
<button data-action="remove" data-id="{{ $database->id }}" class="btn btn-xs btn-danger"><i class="fa fa-trash"></i></button>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-5">
|
|
|
|
<div class="box box-success">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h3 class="box-title">Create New Database</h3>
|
|
|
|
</div>
|
|
|
|
<form action="{{ route('admin.servers.view.database', $server->id) }}" method="POST">
|
|
|
|
<div class="box-body">
|
|
|
|
<div class="form-group">
|
2017-07-22 18:55:30 +00:00
|
|
|
<label for="pDatabaseHostId" class="control-label">Database Host</label>
|
|
|
|
<select id="pDatabaseHostId" name="database_host_id" class="form-control">
|
2017-03-05 21:37:38 +00:00
|
|
|
@foreach($hosts as $host)
|
|
|
|
<option value="{{ $host->id }}">{{ $host->name }}</option>
|
|
|
|
@endforeach
|
|
|
|
</select>
|
|
|
|
<p class="text-muted small">Select the host database server that this database should be created on.</p>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="pDatabaseName" class="control-label">Database</label>
|
|
|
|
<div class="input-group">
|
|
|
|
<span class="input-group-addon">s{{ $server->id }}_</span>
|
|
|
|
<input id="pDatabaseName" type="text" name="database" class="form-control" placeholder="database" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2017-07-22 18:55:30 +00:00
|
|
|
<label for="pRemote" class="control-label">Connections</label>
|
|
|
|
<input id="pRemote" type="text" name="remote" class="form-control" value="%" />
|
2017-03-05 21:37:38 +00:00
|
|
|
<p class="text-muted small">This should reflect the IP address that connections are allowed from. Uses standard MySQL notation. If unsure leave as <code>%</code>.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="box-footer">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<p class="text-muted small no-margin">A username and password for this database will be randomly generated after form submission.</p>
|
|
|
|
<input type="submit" class="btn btn-sm btn-success pull-right" value="Create Database" />
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('footer-scripts')
|
|
|
|
@parent
|
|
|
|
<script>
|
|
|
|
$('#pDatabaseHost').select2();
|
|
|
|
$('[data-action="remove"]').click(function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var self = $(this);
|
|
|
|
swal({
|
|
|
|
title: '',
|
|
|
|
type: 'warning',
|
|
|
|
text: 'Are you sure that you want to delete this database? There is no going back, all data will immediately be removed.',
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonText: 'Delete',
|
|
|
|
confirmButtonColor: '#d9534f',
|
|
|
|
closeOnConfirm: false,
|
|
|
|
showLoaderOnConfirm: true,
|
|
|
|
}, function () {
|
|
|
|
$.ajax({
|
|
|
|
method: 'DELETE',
|
2019-12-16 02:19:35 +00:00
|
|
|
url: '/admin/servers/view/{{ $server->id }}/database/' + self.data('id') + '/delete',
|
2017-03-05 21:37:38 +00:00
|
|
|
headers: { 'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content') },
|
|
|
|
}).done(function () {
|
|
|
|
self.parent().parent().slideUp();
|
|
|
|
swal.close();
|
|
|
|
}).fail(function (jqXHR) {
|
|
|
|
console.error(jqXHR);
|
|
|
|
swal({
|
|
|
|
type: 'error',
|
|
|
|
title: 'Whoops!',
|
2018-05-13 14:24:07 +00:00
|
|
|
text: (typeof jqXHR.responseJSON.error !== 'undefined') ? jqXHR.responseJSON.error : 'An error occurred while processing this request.'
|
2017-03-05 21:37:38 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$('[data-action="reset-password"]').click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var block = $(this);
|
|
|
|
$(this).addClass('disabled').find('i').addClass('fa-spin');
|
|
|
|
$.ajax({
|
|
|
|
type: 'PATCH',
|
2019-12-16 02:19:35 +00:00
|
|
|
url: '/admin/servers/view/{{ $server->id }}/database',
|
2017-03-05 21:37:38 +00:00
|
|
|
headers: { 'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content') },
|
|
|
|
data: { database: $(this).data('id') },
|
|
|
|
}).done(function (data) {
|
|
|
|
swal({
|
|
|
|
type: 'success',
|
|
|
|
title: '',
|
|
|
|
text: 'The password for this database has been reset.',
|
|
|
|
});
|
|
|
|
}).fail(function(jqXHR, textStatus, errorThrown) {
|
|
|
|
console.error(jqXHR);
|
2018-05-13 14:24:07 +00:00
|
|
|
var error = 'An error occurred while trying to process this request.';
|
2017-03-05 21:37:38 +00:00
|
|
|
if (typeof jqXHR.responseJSON !== 'undefined' && typeof jqXHR.responseJSON.error !== 'undefined') {
|
|
|
|
error = jqXHR.responseJSON.error;
|
|
|
|
}
|
|
|
|
swal({
|
|
|
|
type: 'error',
|
|
|
|
title: 'Whoops!',
|
|
|
|
text: error
|
|
|
|
});
|
|
|
|
}).always(function () {
|
|
|
|
block.removeClass('disabled').find('i').removeClass('fa-spin');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endsection
|