mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
247 lines
8.4 KiB
PHP
Executable file
247 lines
8.4 KiB
PHP
Executable file
<?php
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Helpers\Helper;
|
|
use Image;
|
|
use App\Models\AssetMaintenance;
|
|
use Input;
|
|
use Lang;
|
|
use App\Models\Supplier;
|
|
use Redirect;
|
|
use App\Models\Setting;
|
|
use Str;
|
|
use View;
|
|
use Auth;
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Requests\ImageUploadRequest;
|
|
|
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
|
|
|
/**
|
|
* This controller handles all actions related to Suppliers for
|
|
* the Snipe-IT Asset Management application.
|
|
*
|
|
* @version v1.0
|
|
*/
|
|
class SuppliersController extends Controller
|
|
{
|
|
/**
|
|
* Show a list of all suppliers
|
|
*
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function index()
|
|
{
|
|
// Grab all the suppliers
|
|
$this->authorize('view', Supplier::class);
|
|
|
|
// Show the page
|
|
return view('suppliers/index');
|
|
}
|
|
|
|
|
|
/**
|
|
* Supplier create.
|
|
*
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function create()
|
|
{
|
|
$this->authorize('create', Supplier::class);
|
|
return view('suppliers/edit')->with('item', new Supplier);
|
|
}
|
|
|
|
|
|
/**
|
|
* Supplier create form processing.
|
|
*
|
|
* @param Request $request
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function store(ImageUploadRequest $request)
|
|
{
|
|
$this->authorize('create', Supplier::class);
|
|
// Create a new supplier
|
|
$supplier = new Supplier;
|
|
// Save the location data
|
|
$supplier->name = request('name');
|
|
$supplier->address = request('address');
|
|
$supplier->address2 = request('address2');
|
|
$supplier->city = request('city');
|
|
$supplier->state = request('state');
|
|
$supplier->country = request('country');
|
|
$supplier->zip = request('zip');
|
|
$supplier->contact = request('contact');
|
|
$supplier->phone = request('phone');
|
|
$supplier->fax = request('fax');
|
|
$supplier->email = request('email');
|
|
$supplier->notes = request('notes');
|
|
$supplier->url = $supplier->addhttp(request('url'));
|
|
$supplier->user_id = Auth::id();
|
|
|
|
if ($request->file('image')) {
|
|
$image = $request->file('image');
|
|
$file_name = str_random(25).".".$image->getClientOriginalExtension();
|
|
$path = public_path('uploads/suppliers/'.$file_name);
|
|
Image::make($image->getRealPath())->resize(200, null, function ($constraint) {
|
|
$constraint->aspectRatio();
|
|
$constraint->upsize();
|
|
})->save($path);
|
|
$supplier->image = $file_name;
|
|
}
|
|
|
|
if ($supplier->save()) {
|
|
return redirect()->route('suppliers.index')->with('success', trans('admin/suppliers/message.create.success'));
|
|
}
|
|
return redirect()->back()->withInput()->withErrors($supplier->getErrors());
|
|
}
|
|
|
|
/**
|
|
* Supplier update.
|
|
*
|
|
* @param int $supplierId
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function edit($supplierId = null)
|
|
{
|
|
$this->authorize('edit', Supplier::class);
|
|
// Check if the supplier exists
|
|
if (is_null($item = Supplier::find($supplierId))) {
|
|
// Redirect to the supplier page
|
|
return redirect()->route('suppliers.index')->with('error', trans('admin/suppliers/message.does_not_exist'));
|
|
}
|
|
|
|
// Show the page
|
|
return view('suppliers/edit', compact('item'));
|
|
}
|
|
|
|
|
|
/**
|
|
* Supplier update form processing page.
|
|
*
|
|
* @param int $supplierId
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function update($supplierId = null, ImageUploadRequest $request)
|
|
{
|
|
$this->authorize('edit', Supplier::class);
|
|
// Check if the supplier exists
|
|
if (is_null($supplier = Supplier::find($supplierId))) {
|
|
// Redirect to the supplier page
|
|
return redirect()->route('suppliers.index')->with('error', trans('admin/suppliers/message.does_not_exist'));
|
|
}
|
|
|
|
// Save the data
|
|
$supplier->name = request('name');
|
|
$supplier->address = request('address');
|
|
$supplier->address2 = request('address2');
|
|
$supplier->city = request('city');
|
|
$supplier->state = request('state');
|
|
$supplier->country = request('country');
|
|
$supplier->zip = request('zip');
|
|
$supplier->contact = request('contact');
|
|
$supplier->phone = request('phone');
|
|
$supplier->fax = request('fax');
|
|
$supplier->email = request('email');
|
|
$supplier->url = $supplier->addhttp(request('url'));
|
|
$supplier->notes = request('notes');
|
|
|
|
|
|
$old_image = $supplier->image;
|
|
|
|
// Set the model's image property to null if the image is being deleted
|
|
if ($request->input('image_delete') == 1) {
|
|
$supplier->image = null;
|
|
}
|
|
|
|
if ($request->file('image')) {
|
|
$image = $request->file('image');
|
|
$file_name = $supplier->id.'-'.str_slug($image->getClientOriginalName()) . "." . $image->getClientOriginalExtension();
|
|
|
|
if ($image->getClientOriginalExtension()!='svg') {
|
|
Image::make($image->getRealPath())->resize(500, null, function ($constraint) {
|
|
$constraint->aspectRatio();
|
|
$constraint->upsize();
|
|
})->save(app('suppliers_upload_path').$file_name);
|
|
} else {
|
|
$image->move(app('suppliers_upload_path'), $file_name);
|
|
}
|
|
$supplier->image = $file_name;
|
|
|
|
}
|
|
|
|
if ((($request->file('image')) && (isset($old_image)) && ($old_image!='')) || ($request->input('image_delete') == 1)) {
|
|
try {
|
|
unlink(app('suppliers_upload_path').$old_image);
|
|
} catch (\Exception $e) {
|
|
\Log::error($e);
|
|
}
|
|
}
|
|
|
|
|
|
if ($supplier->save()) {
|
|
return redirect()->route('suppliers.index')->with('success', trans('admin/suppliers/message.update.success'));
|
|
}
|
|
|
|
return redirect()->back()->withInput()->withErrors($supplier->getErrors());
|
|
|
|
}
|
|
|
|
/**
|
|
* Delete the given supplier.
|
|
*
|
|
* @param int $supplierId
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function destroy($supplierId)
|
|
{
|
|
$this->authorize('delete', Supplier::class);
|
|
if (is_null($supplier = Supplier::with('asset_maintenances', 'assets', 'licenses')->withCount('asset_maintenances','assets','licenses')->find($supplierId))) {
|
|
return redirect()->route('suppliers.index')->with('error', trans('admin/suppliers/message.not_found'));
|
|
}
|
|
|
|
|
|
if ($supplier->assets_count > 0) {
|
|
return redirect()->route('suppliers.index')->with('error', trans('admin/suppliers/message.delete.assoc_assets', ['asset_count' => (int) $supplier->assets_count]));
|
|
}
|
|
|
|
if ($supplier->asset_maintenances_count > 0) {
|
|
return redirect()->route('suppliers.index')->with('error', trans('admin/suppliers/message.delete.assoc_maintenances', ['asset_maintenances_count' => $supplier->asset_maintenances_count]));
|
|
}
|
|
|
|
if ($supplier->licenses_count > 0) {
|
|
return redirect()->route('suppliers.index')->with('error', trans('admin/suppliers/message.delete.assoc_licenses', ['licenses_count' => (int) $supplier->licenses_count]));
|
|
}
|
|
|
|
$supplier->delete();
|
|
return redirect()->route('suppliers.index')->with('success',
|
|
trans('admin/suppliers/message.delete.success')
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Get the asset information to present to the supplier view page
|
|
*
|
|
* @param null $supplierId
|
|
* @return \Illuminate\Contracts\View\View
|
|
* @internal param int $assetId
|
|
*/
|
|
public function show($supplierId = null)
|
|
{
|
|
$supplier = Supplier::find($supplierId);
|
|
|
|
if (isset($supplier->id)) {
|
|
return view('suppliers/view', compact('supplier'));
|
|
}
|
|
// Prepare the error message
|
|
$error = trans('admin/suppliers/message.does_not_exist', compact('id'));
|
|
|
|
// Redirect to the user management page
|
|
return redirect()->route('suppliers.index')->with('error', $error);
|
|
}
|
|
|
|
}
|