mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
remove unused route, controller functions and view
This commit is contained in:
parent
43d92bec5b
commit
0d49fc3a2e
|
@ -180,123 +180,4 @@ class ViewAssetsController extends Controller
|
||||||
{
|
{
|
||||||
return view('account/requested');
|
return view('account/requested');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the acceptance screen
|
|
||||||
public function getAcceptAsset($logID = null)
|
|
||||||
{
|
|
||||||
$findlog = Actionlog::where('id', $logID)->first();
|
|
||||||
|
|
||||||
if (! $findlog) {
|
|
||||||
return redirect()->to('account/view-assets')->with('error', 'No matching record.');
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($findlog->accepted_id != '') {
|
|
||||||
return redirect()->to('account/view-assets')->with('error', trans('admin/users/message.error.asset_already_accepted'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$user = Auth::user();
|
|
||||||
|
|
||||||
// TODO - Fix this for non-assets
|
|
||||||
if (($findlog->item_type == Asset::class) && ($user->id != $findlog->item->assigned_to)) {
|
|
||||||
return redirect()->to('account/view-assets')->with('error', trans('admin/users/message.error.incorrect_user_accepted'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$item = $findlog->item;
|
|
||||||
|
|
||||||
// Check if the asset exists
|
|
||||||
if (is_null($item)) {
|
|
||||||
// Redirect to the asset management page
|
|
||||||
return redirect()->to('account')->with('error', trans('admin/hardware/message.does_not_exist'));
|
|
||||||
} elseif (! Company::isCurrentUserHasAccess($item)) {
|
|
||||||
return redirect()->route('requestable-assets')->with('error', trans('general.insufficient_permissions'));
|
|
||||||
} else {
|
|
||||||
return view('account/accept-asset', compact('item'))->with('findlog', $findlog)->with('item', $item);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save the acceptance
|
|
||||||
public function postAcceptAsset(Request $request, $logID = null)
|
|
||||||
{
|
|
||||||
|
|
||||||
// Check if the asset exists
|
|
||||||
if (is_null($findlog = Actionlog::where('id', $logID)->first())) {
|
|
||||||
// Redirect to the asset management page
|
|
||||||
return redirect()->to('account/view-assets')->with('error', trans('admin/hardware/message.does_not_exist'));
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($findlog->accepted_id != '') {
|
|
||||||
// Redirect to the asset management page
|
|
||||||
return redirect()->to('account/view-assets')->with('error', trans('admin/users/message.error.asset_already_accepted'));
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($request->missing('asset_acceptance')) {
|
|
||||||
return redirect()->back()->with('error', trans('admin/users/message.error.accept_or_decline'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$user = Auth::user();
|
|
||||||
|
|
||||||
if (($findlog->item_type == Asset::class) && ($user->id != $findlog->item->assigned_to)) {
|
|
||||||
return redirect()->to('account/view-assets')->with('error', trans('admin/users/message.error.incorrect_user_accepted'));
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($request->filled('signature_output')) {
|
|
||||||
$path = config('app.private_uploads').'/signatures';
|
|
||||||
$sig_filename = 'siglog-'.$findlog->id.'-'.date('Y-m-d-his').'.png';
|
|
||||||
$data_uri = e($request->get('signature_output'));
|
|
||||||
$encoded_image = explode(',', $data_uri);
|
|
||||||
$decoded_image = base64_decode($encoded_image[1]);
|
|
||||||
|
|
||||||
Storage::putFileAs($path, $decoded_image, $sig_filename);
|
|
||||||
//file_put_contents($path.'/'.$sig_filename, $decoded_image);
|
|
||||||
}
|
|
||||||
|
|
||||||
$logaction = new Actionlog();
|
|
||||||
|
|
||||||
if ($request->input('asset_acceptance') == 'accepted') {
|
|
||||||
$logaction_msg = 'accepted';
|
|
||||||
$accepted = 'accepted';
|
|
||||||
$return_msg = trans('admin/users/message.accepted');
|
|
||||||
} else {
|
|
||||||
$logaction_msg = 'declined';
|
|
||||||
$accepted = 'rejected';
|
|
||||||
$return_msg = trans('admin/users/message.declined');
|
|
||||||
}
|
|
||||||
$logaction->item_id = $findlog->item_id;
|
|
||||||
$logaction->item_type = $findlog->item_type;
|
|
||||||
|
|
||||||
// Asset
|
|
||||||
if (($findlog->item_id != '') && ($findlog->item_type == Asset::class)) {
|
|
||||||
if ($request->input('asset_acceptance') != 'accepted') {
|
|
||||||
DB::table('assets')
|
|
||||||
->where('id', $findlog->item_id)
|
|
||||||
->update(['assigned_to' => null]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$logaction->target_id = $findlog->target_id;
|
|
||||||
$logaction->target_type = User::class;
|
|
||||||
$logaction->note = e($request->input('note'));
|
|
||||||
$logaction->updated_at = date('Y-m-d H:i:s');
|
|
||||||
|
|
||||||
if (isset($sig_filename)) {
|
|
||||||
$logaction->accept_signature = $sig_filename;
|
|
||||||
}
|
|
||||||
$log = $logaction->logaction($logaction_msg);
|
|
||||||
|
|
||||||
$update_checkout = DB::table('action_logs')
|
|
||||||
->where('id', $findlog->id)
|
|
||||||
->update(['accepted_id' => $logaction->id]);
|
|
||||||
|
|
||||||
if (($findlog->item_id != '') && ($findlog->item_type == Asset::class)) {
|
|
||||||
$affected_asset = $logaction->item;
|
|
||||||
$affected_asset->accepted = $accepted;
|
|
||||||
$affected_asset->save();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($update_checkout) {
|
|
||||||
return redirect()->to('account/view-assets')->with('success', $return_msg);
|
|
||||||
} else {
|
|
||||||
return redirect()->to('account/view-assets')->with('error', 'Something went wrong ');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,135 +0,0 @@
|
||||||
@extends('layouts/default')
|
|
||||||
|
|
||||||
{{-- Page title --}}
|
|
||||||
@section('title')
|
|
||||||
{{ trans('general.accept', ['asset' => $item->present()->name()]) }}
|
|
||||||
@parent
|
|
||||||
@stop
|
|
||||||
|
|
||||||
|
|
||||||
{{-- Page content --}}
|
|
||||||
@section('content')
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ url(mix('css/dist/signature-pad.min.css')) }}">
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
|
|
||||||
padding-top: 17px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#eula_div {
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
overflow: scroll;
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
|
|
||||||
|
|
||||||
<form class="form-horizontal" method="post" action="" autocomplete="off">
|
|
||||||
<!-- CSRF Token -->
|
|
||||||
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
|
||||||
<input type="hidden" name="logId" value="{{ $findlog->id }}" />
|
|
||||||
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2">
|
|
||||||
<div class="panel box box-default">
|
|
||||||
<div class="box-body">
|
|
||||||
<div class="col-md-12">
|
|
||||||
<div class="radio">
|
|
||||||
<label>
|
|
||||||
<input type="radio" name="asset_acceptance" id="accepted" value="accepted">
|
|
||||||
{{trans('general.i_accept')}}
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="radio">
|
|
||||||
<label>
|
|
||||||
<input type="radio" name="asset_acceptance" id="declined" value="declined">
|
|
||||||
{{trans('general.i_decline')}}
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@if ($item->getEula())
|
|
||||||
<div class="col-md-12" style="padding-top: 20px">
|
|
||||||
<div id="eula_div">
|
|
||||||
{!! $item->getEula() !!}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@endif
|
|
||||||
|
|
||||||
@if ($snipeSettings->require_accept_signature=='1')
|
|
||||||
<div class="col-md-12 col-sm-12 text-center" style="padding-top: 20px">
|
|
||||||
|
|
||||||
<h2>{{trans('general.sign_tos')}}</h2>
|
|
||||||
|
|
||||||
<div id="signature-pad" class="m-signature-pad">
|
|
||||||
<div class="m-signature-pad--body col-md-12 col-sm-12 col-lg-12 col-xs-12">
|
|
||||||
<canvas></canvas>
|
|
||||||
<input type="hidden" name="signature_output" id="signature_output">
|
|
||||||
</div>
|
|
||||||
<div class="col-md-12 col-sm-12 col-lg-12 col-xs-12 text-center">
|
|
||||||
<button type="button" class="btn btn-sm btn-primary clear" data-action="clear" id="clear_button">{{trans('general.clear_signature')}}</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div> <!-- .col-md-12.text-center-->
|
|
||||||
@endif
|
|
||||||
|
|
||||||
</div><!-- / col-md-12 -->
|
|
||||||
|
|
||||||
</div> <!-- / box-body -->
|
|
||||||
<div class="box-footer text-right">
|
|
||||||
<button type="submit" class="btn btn-success" id="submit-button"><i class="fas fa-check icon-white" aria-hidden="true"></i> {{ trans('general.submit') }}</button>
|
|
||||||
</div><!-- /.box-footer -->
|
|
||||||
</div> <!-- / box-default -->
|
|
||||||
</div> <!-- / col -->
|
|
||||||
</div> <!-- / row -->
|
|
||||||
</form>
|
|
||||||
|
|
||||||
@stop
|
|
||||||
|
|
||||||
@section('moar_scripts')
|
|
||||||
|
|
||||||
<script nonce="{{ csrf_token() }}">
|
|
||||||
var wrapper = document.getElementById("signature-pad"),
|
|
||||||
clearButton = wrapper.querySelector("[data-action=clear]"),
|
|
||||||
saveButton = wrapper.querySelector("[data-action=save]"),
|
|
||||||
canvas = wrapper.querySelector("canvas"),
|
|
||||||
signaturePad;
|
|
||||||
|
|
||||||
// Adjust canvas coordinate space taking into account pixel ratio,
|
|
||||||
// to make it look crisp on mobile devices.
|
|
||||||
// This also causes canvas to be cleared.
|
|
||||||
function resizeCanvas() {
|
|
||||||
// When zoomed out to less than 100%, for some very strange reason,
|
|
||||||
// some browsers report devicePixelRatio as less than 1
|
|
||||||
// and only part of the canvas is cleared then.
|
|
||||||
var ratio = Math.max(window.devicePixelRatio || 1, 1);
|
|
||||||
canvas.width = canvas.offsetWidth * ratio;
|
|
||||||
canvas.height = canvas.offsetHeight * ratio;
|
|
||||||
canvas.getContext("2d").scale(ratio, ratio);
|
|
||||||
}
|
|
||||||
|
|
||||||
window.onresize = resizeCanvas;
|
|
||||||
resizeCanvas();
|
|
||||||
|
|
||||||
signaturePad = new SignaturePad(canvas);
|
|
||||||
|
|
||||||
$('#clear_button').on("click", function (event) {
|
|
||||||
signaturePad.clear();
|
|
||||||
});
|
|
||||||
|
|
||||||
$('#submit-button').on("click", function (event) {
|
|
||||||
if (signaturePad.isEmpty()) {
|
|
||||||
alert("Please provide signature first.");
|
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
$('#signature_output').val(signaturePad.toDataURL());
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
</script>
|
|
||||||
@stop
|
|
|
@ -248,12 +248,6 @@ Route::group(['prefix' => 'account', 'middleware' => ['auth']], function () {
|
||||||
|
|
||||||
Route::get('requested', [ViewAssetsController::class, 'getRequestedAssets'])->name('account.requested');
|
Route::get('requested', [ViewAssetsController::class, 'getRequestedAssets'])->name('account.requested');
|
||||||
|
|
||||||
// Accept Asset
|
|
||||||
Route::get(
|
|
||||||
'accept-asset/{logID}',
|
|
||||||
[ViewAssetsController::class, 'getAcceptAsset']
|
|
||||||
)->name('account/accept-assets');
|
|
||||||
|
|
||||||
// Profile
|
// Profile
|
||||||
Route::get(
|
Route::get(
|
||||||
'requestable-assets',
|
'requestable-assets',
|
||||||
|
|
Loading…
Reference in a new issue