2017-09-26 02:43:01 +00:00
|
|
|
{{-- Pterodactyl - Panel --}}
|
2017-01-24 22:57:08 +00:00
|
|
|
{{-- Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com> --}}
|
2017-01-17 23:21:05 +00:00
|
|
|
|
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-01-17 23:21:05 +00:00
|
|
|
@extends('layouts.master')
|
|
|
|
|
|
|
|
@section('title')
|
2017-01-18 01:01:26 +00:00
|
|
|
@lang('base.api.index.header')
|
2017-01-17 23:21:05 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content-header')
|
2017-01-18 01:01:26 +00:00
|
|
|
<h1>@lang('base.api.index.header')<small>@lang('base.api.index.header_sub')</small></h1>
|
2017-01-17 23:21:05 +00:00
|
|
|
<ol class="breadcrumb">
|
2017-01-18 01:01:26 +00:00
|
|
|
<li><a href="{{ route('index') }}">@lang('strings.home')</a></li>
|
2017-01-19 00:48:12 +00:00
|
|
|
<li class="active">@lang('navigation.account.api_access')</li>
|
2017-01-17 23:21:05 +00:00
|
|
|
</ol>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
<div class="box">
|
|
|
|
<div class="box-header">
|
2017-01-18 01:01:26 +00:00
|
|
|
<h3 class="box-title">@lang('base.api.index.list')</h3>
|
2017-03-18 20:38:23 +00:00
|
|
|
<div class="box-tools">
|
|
|
|
<a href="{{ route('account.api.new') }}"><button class="btn btn-primary btn-sm">Create New</button></a>
|
|
|
|
</div>
|
2017-01-17 23:21:05 +00:00
|
|
|
</div>
|
|
|
|
<div class="box-body table-responsive no-padding">
|
|
|
|
<table class="table table-hover">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2017-01-18 01:01:26 +00:00
|
|
|
<th>@lang('strings.memo')</th>
|
2018-01-13 22:06:19 +00:00
|
|
|
<th>@lang('strings.public_key')</th>
|
|
|
|
<th class="text-right hidden-sm hidden-xs">@lang('strings.last_used')</th>
|
|
|
|
<th class="text-right hidden-sm hidden-xs">@lang('strings.created')</th>
|
2017-01-17 23:21:05 +00:00
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
@foreach ($keys as $key)
|
|
|
|
<tr>
|
|
|
|
<td>{{ $key->memo }}</td>
|
2018-01-13 22:06:19 +00:00
|
|
|
<td><code>{{ $key->identifier . decrypt($key->token) }}</code></td>
|
|
|
|
<td class="text-right hidden-sm hidden-xs">
|
|
|
|
@if(!is_null($key->last_used_at))
|
|
|
|
@datetimeHuman($key->last_used_at)
|
2017-01-17 23:21:05 +00:00
|
|
|
@else
|
2018-01-13 22:06:19 +00:00
|
|
|
—
|
2017-01-17 23:21:05 +00:00
|
|
|
@endif
|
|
|
|
</td>
|
2018-01-13 22:06:19 +00:00
|
|
|
<td class="text-right hidden-sm hidden-xs">
|
|
|
|
@datetimeHuman($key->created_at)
|
|
|
|
</td>
|
2017-01-17 23:21:05 +00:00
|
|
|
<td class="text-center">
|
2018-01-14 19:30:55 +00:00
|
|
|
<a href="#delete" class="text-danger" data-action="delete" data-attr="{{ $key->identifier }}"><i class="fa fa-trash"></i></a>
|
2017-01-17 23:21:05 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
2017-02-16 17:57:48 +00:00
|
|
|
|
|
|
|
@section('footer-scripts')
|
|
|
|
@parent
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('[data-action="delete"]').click(function (event) {
|
|
|
|
var self = $(this);
|
|
|
|
event.preventDefault();
|
|
|
|
swal({
|
|
|
|
type: 'error',
|
|
|
|
title: 'Revoke API Key',
|
|
|
|
text: 'Once this API key is revoked any applications currently using it will stop working.',
|
|
|
|
showCancelButton: true,
|
|
|
|
allowOutsideClick: true,
|
|
|
|
closeOnConfirm: false,
|
|
|
|
confirmButtonText: 'Revoke',
|
|
|
|
confirmButtonColor: '#d9534f',
|
|
|
|
showLoaderOnConfirm: true
|
|
|
|
}, function () {
|
|
|
|
$.ajax({
|
|
|
|
method: 'DELETE',
|
2018-01-14 19:30:55 +00:00
|
|
|
url: Router.route('account.api.revoke', { identifier: self.data('attr') }),
|
2017-02-16 17:57:48 +00:00
|
|
|
headers: {
|
|
|
|
'X-CSRF-TOKEN': '{{ csrf_token() }}'
|
|
|
|
}
|
|
|
|
}).done(function (data) {
|
|
|
|
swal({
|
|
|
|
type: 'success',
|
|
|
|
title: '',
|
|
|
|
text: 'API Key has been revoked.'
|
|
|
|
});
|
|
|
|
self.parent().parent().slideUp();
|
|
|
|
}).fail(function (jqXHR) {
|
|
|
|
console.error(jqXHR);
|
|
|
|
swal({
|
|
|
|
type: 'error',
|
|
|
|
title: 'Whoops!',
|
|
|
|
text: 'An error occured while attempting to revoke this key.'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endsection
|