mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
64d649be7f
* Extract a handlesimages trait to centralize logic for parsing/storing images on upload in create/edit methods. * Use same image upload/layout in accessories as consum+components. * Monster: Cleanup/Refactor http controllers. This cleans up docblocks, pulls most non-crudy actions into their own controllers, and does general cleanup/logic refactoring. There /should/ be no functional changes, but we all know how should works.. Extract checkin/checkout functions to a separate controller for accessories. Move controllers to subdirectory. Cleanup AssetModelsController Extract component checkin/checkout Assorted cleanups/doc/formatting in controllers. Refactor LicenseController. Refactor UsersController Update viewassetscontroller. * Codacy cleanups * More codacy cleanups. Extract a LicenseCheckout Form request as well. * A bit more refactor/cleaning of the license checkout method. * Review Related Cleanups * Fix most of the item_not_found translations. In many cases, the string being generated did not even use the id parameter. Where it does, pass it as id instead of as a different value. * Remove some old $data arrays from when we manually sent emails from the controllers. This has been superseeded by the notification system (yay!) * Bugfix: Only log the checkin of an accessory if the checkin completes sucessfully.
111 lines
3.7 KiB
PHP
111 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Licenses;
|
|
|
|
use App\Http\Requests\LicenseCheckoutRequest;
|
|
use App\Models\Asset;
|
|
use App\Models\License;
|
|
use App\Models\LicenseSeat;
|
|
use App\Models\User;
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Input;
|
|
use Illuminate\Support\Facades\Validator;
|
|
|
|
class LicenseCheckoutController extends Controller
|
|
{
|
|
/**
|
|
* Provides the form view for checking out a license to a user.
|
|
* Here we pass the license seat ID instead of the license ID,
|
|
* because licenses themselves are never checked out to anyone,
|
|
* only the seats associated with them.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v1.0]
|
|
* @param $licenceId
|
|
* @return \Illuminate\Contracts\View\View
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
public function create($licenceId)
|
|
{
|
|
// Check that the license is valid
|
|
if ($license = License::find($licenseId)) {
|
|
|
|
// If the license is valid, check that there is an available seat
|
|
if ($license->avail_seats_count < 1) {
|
|
return redirect()->route('licenses.index')->with('error', 'There are no available seats for this license');
|
|
}
|
|
}
|
|
|
|
$this->authorize('checkout', $license);
|
|
return view('licenses/checkout', compact('license'));
|
|
}
|
|
|
|
|
|
/**
|
|
* Validates and stores the license checkout action.
|
|
*
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
* @since [v1.0]
|
|
* @param LicenseCheckoutRequest $request
|
|
* @param $licenseId
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
|
*/
|
|
|
|
public function store(LicenseCheckoutRequest $request, $licenseId, $seatId = null)
|
|
{
|
|
$license = License::find($licenseId);
|
|
if (!$license) {
|
|
return redirect()->route('licenses.index')->with('error', trans('admin/licenses/message.not_found'));
|
|
}
|
|
|
|
$this->authorize('checkout', $license);
|
|
|
|
$licenseSeat = $request->findLicenseSeatToCheckout($license, $seatId);
|
|
|
|
$licenseSeat->user_id = Auth::id();
|
|
$checkoutMethod = 'checkoutTo'.ucwords(request('checkout_to_type'));
|
|
|
|
if ($this->$checkoutMethod($licenseSeat)) {
|
|
return redirect()->route("licenses.index")->with('success', trans('admin/licenses/message.checkout.success'));
|
|
}
|
|
return redirect()->route("licenses.index")->with('error', trans('Something went wrong handling this checkout.'));
|
|
}
|
|
|
|
protected function checkoutToAsset($licenseSeat)
|
|
{
|
|
if (is_null($target = Asset::find(request('asset_id')))) {
|
|
return redirect()->route('licenses.index')->with('error', trans('admin/licenses/message.asset_does_not_exist'));
|
|
}
|
|
$licenseSeat->asset_id = request('asset_id');
|
|
|
|
// Override asset's assigned user if available
|
|
if ($target->checkedOutToUser()) {
|
|
$licenseSeat->assigned_to = $target->assigned_to;
|
|
}
|
|
|
|
if ($licenseSeat->save()) {
|
|
$licenseSeat->logCheckout(request('note'), $target);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
protected function checkoutToUser($licenseSeat)
|
|
{
|
|
// Fetch the target and set the license user
|
|
if (is_null($target = User::find(request('assigned_to')))) {
|
|
return redirect()->route('licenses.index')->with('error', trans('admin/licenses/message.user_does_not_exist'));
|
|
}
|
|
$licenseSeat->assigned_to = request('assigned_to');
|
|
|
|
if ($licenseSeat->save()) {
|
|
$licenseSeat->logCheckout(request('note'), $target);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|