mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 23:54:12 -08:00
75b527ab59
* Locations API support for image * Added manufacturers API support for image * Added manufacturers API support for image * Added image support for locations add/update * Added manufacturer image upload support to controller * General image string * Added blade support for image uploads/delete image * Added $request support (from Input::) * Added image support in API transformers * Added image to Manufacturers presenter for data table * Migration to create image fields * Ignore the contents of the new image directories * Create new image upload directories * Created components/consumables uploads directory * Fixed missing textSearch scope from companies * Added ignore for companies uploads directory * Added blade support for image upload * Fixed path to upload directory on edit * Added company image upport to transformers, controllers * Added image support for categories * Added support for images in Departments * Added support for image in Consumables * Added image support for components
180 lines
5.6 KiB
PHP
180 lines
5.6 KiB
PHP
<?php
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Company;
|
|
use Input;
|
|
use Lang;
|
|
use Redirect;
|
|
use View;
|
|
use Illuminate\Http\Request;
|
|
use Image;
|
|
use App\Http\Requests\ImageUploadRequest;
|
|
|
|
/**
|
|
* This controller handles all actions related to Companies for
|
|
* the Snipe-IT Asset Management application.
|
|
*
|
|
* @version v1.0
|
|
*/
|
|
|
|
final class CompaniesController extends Controller
|
|
{
|
|
|
|
/**
|
|
* Returns view to display listing of companies.
|
|
*
|
|
* @author [Abdullah Alansari] [<ahimta@gmail.com>]
|
|
* @since [v1.8]
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function index()
|
|
{
|
|
return view('companies/index')->with('companies', Company::all());
|
|
}
|
|
|
|
/**
|
|
* Returns view to create a new company.
|
|
*
|
|
* @author [Abdullah Alansari] [<ahimta@gmail.com>]
|
|
* @since [v1.8]
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function create()
|
|
{
|
|
return view('companies/edit')->with('item', new Company);
|
|
}
|
|
|
|
/**
|
|
* Save data from new company form.
|
|
*
|
|
* @author [Abdullah Alansari] [<ahimta@gmail.com>]
|
|
* @since [v1.8]
|
|
* @param Request $request
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function store(ImageUploadRequest $request)
|
|
{
|
|
$company = new Company;
|
|
$company->name = $request->input('name');
|
|
|
|
if ($request->file('image')) {
|
|
$image = $request->file('image');
|
|
$file_name = str_random(25).".".$image->getClientOriginalExtension();
|
|
$path = public_path('uploads/companies/'.$file_name);
|
|
Image::make($image->getRealPath())->resize(200, null, function ($constraint) {
|
|
$constraint->aspectRatio();
|
|
$constraint->upsize();
|
|
})->save($path);
|
|
$company->image = $file_name;
|
|
}
|
|
|
|
if ($company->save()) {
|
|
return redirect()->route('companies.index')
|
|
->with('success', trans('admin/companies/message.create.success'));
|
|
}
|
|
return redirect()->back()->withInput()->withErrors($company->getErrors());
|
|
}
|
|
|
|
|
|
/**
|
|
* Return form to edit existing company.
|
|
*
|
|
* @author [Abdullah Alansari] [<ahimta@gmail.com>]
|
|
* @since [v1.8]
|
|
* @param int $companyId
|
|
* @return \Illuminate\Contracts\View\View
|
|
*/
|
|
public function edit($companyId)
|
|
{
|
|
if (is_null($item = Company::find($companyId))) {
|
|
return redirect()->route('companies.index')
|
|
->with('error', trans('admin/companies/message.does_not_exist'));
|
|
}
|
|
return view('companies/edit')->with('item', $item);
|
|
}
|
|
|
|
/**
|
|
* Save data from edit company form.
|
|
*
|
|
* @author [Abdullah Alansari] [<ahimta@gmail.com>]
|
|
* @since [v1.8]
|
|
* @param Request $request
|
|
* @param int $companyId
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function update(ImageUploadRequest $request, $companyId)
|
|
{
|
|
if (is_null($company = Company::find($companyId))) {
|
|
return redirect()->route('companies.index')->with('error', trans('admin/companies/message.does_not_exist'));
|
|
}
|
|
|
|
$company->name = $request->input('name');
|
|
|
|
if ($request->file('image')) {
|
|
$image = $request->file('image');
|
|
$file_name = str_random(25).".".$image->getClientOriginalExtension();
|
|
$path = public_path('uploads/companies/'.$file_name);
|
|
Image::make($image->getRealPath())->resize(200, null, function ($constraint) {
|
|
$constraint->aspectRatio();
|
|
$constraint->upsize();
|
|
})->save($path);
|
|
$company->image = $file_name;
|
|
} elseif ($request->input('image_delete')=='1') {
|
|
$company->image = null;
|
|
}
|
|
|
|
|
|
if ($company->save()) {
|
|
return redirect()->route('companies.index')
|
|
->with('success', trans('admin/companies/message.update.success'));
|
|
}
|
|
return redirect()->route('companies.edit', ['company' => $companyId])
|
|
->with('error', trans('admin/companies/message.update.error'));
|
|
}
|
|
|
|
/**
|
|
* Delete company
|
|
*
|
|
* @author [Abdullah Alansari] [<ahimta@gmail.com>]
|
|
* @since [v1.8]
|
|
* @param int $companyId
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function destroy($companyId)
|
|
{
|
|
if (is_null($company = Company::find($companyId))) {
|
|
return redirect()->route('companies.index')
|
|
->with('error', trans('admin/companies/message.not_found'));
|
|
} else {
|
|
try {
|
|
$company->delete();
|
|
return redirect()->route('companies.index')
|
|
->with('success', trans('admin/companies/message.delete.success'));
|
|
} catch (\Illuminate\Database\QueryException $exception) {
|
|
/*
|
|
* NOTE: This happens when there's a foreign key constraint violation
|
|
* For example when rows in other tables are referencing this company
|
|
*/
|
|
if ($exception->getCode() == 23000) {
|
|
return redirect()->route('companies.index')
|
|
->with('error', trans('admin/companies/message.assoc_users'));
|
|
} else {
|
|
throw $exception;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public function show($id) {
|
|
$this->authorize('view', Company::class);
|
|
|
|
if (is_null($company = Company::find($id))) {
|
|
return redirect()->route('companies.index')
|
|
->with('error', trans('admin/companies/message.not_found'));
|
|
} else {
|
|
return view('companies/view')->with('company',$company);
|
|
}
|
|
|
|
}
|
|
}
|