2020-05-21 01:11:20 +00:00
|
|
|
{{-- Pterodactyl - Panel --}}
|
|
|
|
{{-- Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com> --}}
|
|
|
|
|
|
|
|
{{-- This software is licensed under the terms of the MIT license. --}}
|
|
|
|
{{-- https://opensource.org/licenses/MIT --}}
|
|
|
|
|
|
|
|
@extends('layouts.admin')
|
|
|
|
|
|
|
|
@section('title')
|
|
|
|
Mounts → View → {{ $mount->id }}
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content-header')
|
|
|
|
<h1>{{ $mount->name }}<small>{{ str_limit($mount->description, 75) }}</small></h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li><a href="{{ route('admin.index') }}">Admin</a></li>
|
|
|
|
<li><a href="{{ route('admin.mounts') }}">Mounts</a></li>
|
|
|
|
<li class="active">{{ $mount->name }}</li>
|
|
|
|
</ol>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="box box-primary">
|
|
|
|
<div class="box-header with-border">
|
2020-05-21 02:50:56 +00:00
|
|
|
<h3 class="box-title">Mount Details</h3>
|
2020-05-21 01:11:20 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<form action="{{ route('admin.mounts.view', $mount->id) }}" method="POST">
|
|
|
|
<div class="box-body">
|
2020-05-21 19:19:59 +00:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="PUniqueID" class="form-label">Unique ID</label>
|
|
|
|
<input type="text" id="PUniqueID" class="form-control" value="{{ $mount->uuid }}" disabled />
|
|
|
|
</div>
|
|
|
|
|
2020-05-21 01:11:20 +00:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="pName" class="form-label">Name</label>
|
|
|
|
<input type="text" id="pName" name="name" class="form-control" value="{{ $mount->name }}" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="pDescription" class="form-label">Description</label>
|
|
|
|
<textarea id="pDescription" name="description" class="form-control" rows="4">{{ $mount->description }}</textarea>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label for="pSource" class="form-label">Source</label>
|
|
|
|
<input type="text" id="pSource" name="source" class="form-control" value="{{ $mount->source }}" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label for="pTarget" class="form-label">Target</label>
|
|
|
|
<input type="text" id="pTarget" name="target" class="form-control" value="{{ $mount->target }}" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label class="form-label">Read Only</label>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="radio radio-success radio-inline">
|
2020-05-21 01:35:30 +00:00
|
|
|
<input type="radio" id="pReadOnlyFalse" name="read_only" value="0" @if(!$mount->read_only) checked @endif>
|
2020-05-21 01:11:20 +00:00
|
|
|
<label for="pReadOnlyFalse">False</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="radio radio-warning radio-inline">
|
2020-05-21 01:35:30 +00:00
|
|
|
<input type="radio" id="pReadOnly" name="read_only" value="1" @if($mount->read_only) checked @endif>
|
2020-05-21 01:11:20 +00:00
|
|
|
<label for="pReadOnly">True</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group col-md-6">
|
|
|
|
<label class="form-label">User Mountable</label>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="radio radio-success radio-inline">
|
2020-05-21 01:35:30 +00:00
|
|
|
<input type="radio" id="pUserMountableFalse" name="user_mountable" value="0" @if(!$mount->user_mountable) checked @endif>
|
2020-05-21 01:11:20 +00:00
|
|
|
<label for="pUserMountableFalse">False</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="radio radio-warning radio-inline">
|
2020-05-21 01:35:30 +00:00
|
|
|
<input type="radio" id="pUserMountable" name="user_mountable" value="1" @if($mount->user_mountable) checked @endif>
|
2020-05-21 01:11:20 +00:00
|
|
|
<label for="pUserMountable">True</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="box-footer">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
{!! method_field('PATCH') !!}
|
|
|
|
|
|
|
|
<button name="action" value="edit" class="btn btn-sm btn-primary pull-right">Save</button>
|
|
|
|
<button name="action" value="delete" class="btn btn-sm btn-danger pull-left muted muted-hover"><i class="fa fa-trash-o"></i></button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h3 class="box-title">Eggs</h3>
|
2020-05-21 02:50:56 +00:00
|
|
|
|
|
|
|
<div class="box-tools">
|
|
|
|
<button class="btn btn-sm btn-primary" data-toggle="modal" data-target="#addEggsModal">Add Eggs</button>
|
|
|
|
</div>
|
2020-05-21 01:11:20 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="box-body table-responsive no-padding">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>Name</th>
|
2020-05-21 02:50:56 +00:00
|
|
|
<th></th>
|
2020-05-21 01:11:20 +00:00
|
|
|
</tr>
|
|
|
|
|
2020-05-21 02:50:56 +00:00
|
|
|
@foreach ($mount->eggs as $egg)
|
2020-05-21 01:11:20 +00:00
|
|
|
<tr>
|
2020-05-21 19:19:59 +00:00
|
|
|
<td class="col-sm-2 middle"><code>{{ $egg->id }}</code></td>
|
|
|
|
<td class="middle"><a href="{{ route('admin.nests.egg.view', $egg->id) }}">{{ $egg->name }}</a></td>
|
2020-05-21 02:50:56 +00:00
|
|
|
<td class="col-sm-1 middle">
|
|
|
|
<button data-action="detach-egg" data-id="{{ $egg->id }}" class="btn btn-sm btn-danger"><i class="fa fa-trash-o"></i></button>
|
|
|
|
</td>
|
2020-05-21 01:11:20 +00:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h3 class="box-title">Nodes</h3>
|
2020-05-21 02:50:56 +00:00
|
|
|
|
|
|
|
<div class="box-tools">
|
|
|
|
<button class="btn btn-sm btn-primary" data-toggle="modal" data-target="#addNodesModal">Add Nodes</button>
|
|
|
|
</div>
|
2020-05-21 01:11:20 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="box-body table-responsive no-padding">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>FQDN</th>
|
2020-05-21 02:50:56 +00:00
|
|
|
<th></th>
|
2020-05-21 01:11:20 +00:00
|
|
|
</tr>
|
|
|
|
|
2020-05-21 02:50:56 +00:00
|
|
|
@foreach ($mount->nodes as $node)
|
2020-05-21 01:11:20 +00:00
|
|
|
<tr>
|
2020-05-21 19:19:59 +00:00
|
|
|
<td class="col-sm-2 middle"><code>{{ $node->id }}</code></td>
|
|
|
|
<td class="middle"><a href="{{ route('admin.nodes.view', $node->id) }}">{{ $node->name }}</a></td>
|
|
|
|
<td class="middle"><code>{{ $node->fqdn }}</code></td>
|
2020-05-21 02:50:56 +00:00
|
|
|
<td class="col-sm-1 middle">
|
|
|
|
<button data-action="detach-node" data-id="{{ $node->id }}" class="btn btn-sm btn-danger"><i class="fa fa-trash-o"></i></button>
|
|
|
|
</td>
|
2020-05-21 01:11:20 +00:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-05-21 02:50:56 +00:00
|
|
|
|
|
|
|
<div class="modal fade" id="addEggsModal" tabindex="-1" role="dialog">
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<form action="{{ route('admin.mounts.eggs', $mount->id) }}" method="POST">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true" style="color: #FFFFFF">×</span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<h4 class="modal-title">Add Eggs</h4>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<label for="pEggs">Eggs</label>
|
|
|
|
<select id="pEggs" name="eggs[]" class="form-control" multiple>
|
|
|
|
@foreach ($nests as $nest)
|
|
|
|
<optgroup label="{{ $nest->name }}">
|
|
|
|
@foreach ($nest->eggs as $egg)
|
|
|
|
|
|
|
|
@if (! in_array($egg->id, $mount->eggs->pluck('id')->toArray()))
|
|
|
|
<option value="{{ $egg->id }}">{{ $egg->name }}</option>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
</optgroup>
|
|
|
|
@endforeach
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-default btn-sm pull-left" data-dismiss="modal">Cancel</button>
|
|
|
|
<button type="submit" class="btn btn-primary btn-sm">Add</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal fade" id="addNodesModal" tabindex="-1" role="dialog">
|
|
|
|
<div class="modal-dialog" role="document">
|
|
|
|
<div class="modal-content">
|
|
|
|
<form action="{{ route('admin.mounts.nodes', $mount->id) }}" method="POST">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true" style="color: #FFFFFF">×</span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<h4 class="modal-title">Add Nodes</h4>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="row">
|
|
|
|
<div class="form-group col-md-12">
|
|
|
|
<label for="pNodes">Nodes</label>
|
|
|
|
<select id="pNodes" name="nodes[]" class="form-control" multiple>
|
|
|
|
@foreach ($locations as $location)
|
|
|
|
<optgroup label="{{ $location->long }} ({{ $location->short }})">
|
|
|
|
@foreach ($location->nodes as $node)
|
|
|
|
|
|
|
|
@if (! in_array($node->id, $mount->nodes->pluck('id')->toArray()))
|
|
|
|
<option value="{{ $node->id }}">{{ $node->name }}</option>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
</optgroup>
|
|
|
|
@endforeach
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
|
|
|
|
<button type="button" class="btn btn-default btn-sm pull-left" data-dismiss="modal">Cancel</button>
|
|
|
|
<button type="submit" class="btn btn-primary btn-sm">Add</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('footer-scripts')
|
|
|
|
@parent
|
|
|
|
|
2020-05-21 19:19:59 +00:00
|
|
|
<script>
|
2020-05-21 02:50:56 +00:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('#pEggs').select2({
|
|
|
|
placeholder: 'Select eggs..',
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#pNodes').select2({
|
|
|
|
placeholder: 'Select nodes..',
|
|
|
|
});
|
|
|
|
|
|
|
|
$('button[data-action="detach-egg"]').click(function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
const element = $(this);
|
|
|
|
const eggId = $(this).data('id');
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
method: 'DELETE',
|
|
|
|
url: '/admin/mounts/' + {{ $mount->id }} + '/eggs/' + eggId,
|
|
|
|
headers: { 'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content') },
|
|
|
|
}).done(function () {
|
|
|
|
element.parent().parent().addClass('warning').delay(100).fadeOut();
|
|
|
|
swal({ type: 'success', title: 'Egg detached.' });
|
|
|
|
}).fail(function (jqXHR) {
|
|
|
|
console.error(jqXHR);
|
|
|
|
swal({
|
|
|
|
title: 'Whoops!',
|
|
|
|
text: jqXHR.responseJSON.error,
|
|
|
|
type: 'error'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$('button[data-action="detach-node"]').click(function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
const element = $(this);
|
|
|
|
const nodeId = $(this).data('id');
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
method: 'DELETE',
|
|
|
|
url: '/admin/mounts/' + {{ $mount->id }} + '/nodes/' + nodeId,
|
|
|
|
headers: { 'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content') },
|
|
|
|
}).done(function () {
|
|
|
|
element.parent().parent().addClass('warning').delay(100).fadeOut();
|
|
|
|
swal({ type: 'success', title: 'Node detached.' });
|
|
|
|
}).fail(function (jqXHR) {
|
|
|
|
console.error(jqXHR);
|
|
|
|
swal({
|
|
|
|
title: 'Whoops!',
|
|
|
|
text: jqXHR.responseJSON.error,
|
|
|
|
type: 'error'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2020-05-21 01:11:20 +00:00
|
|
|
@endsection
|