] */ class CategoriesController extends Controller { /** * Returns a view that invokes the ajax tables which actually contains * the content for the categories listing, which is generated in getDatatable. * * @author [A. Gianotto] [] * @see CategoriesController::getDatatable() method that generates the JSON response * @since [v1.0] * @return View */ public function getIndex() { // Show the page return View::make('categories/index'); } /** * Returns a form view to create a new category. * * @author [A. Gianotto] [] * @see CategoriesController::postCreate() method that stores the data * @since [v1.0] * @return View */ public function getCreate() { // Show the page $category_types= Helper::categoryTypeList(); return View::make('categories/edit')->with('category', new Category) ->with('category_types', $category_types); } /** * Validates and stores the new category data. * * @author [A. Gianotto] [] * @see CategoriesController::getCreate() method that makes the form. * @since [v1.0] * @return Redirect */ public function postCreate() { // create a new model instance $category = new Category(); // Update the category data $category->name = e(Input::get('name')); $category->category_type = e(Input::get('category_type')); $category->eula_text = e(Input::get('eula_text')); $category->use_default_eula = e(Input::get('use_default_eula', '0')); $category->require_acceptance = e(Input::get('require_acceptance', '0')); $category->checkin_email = e(Input::get('checkin_email', '0')); $category->user_id = Auth::user()->id; if ($category->save()) { // Redirect to the new category page return redirect()->to("admin/settings/categories")->with('success', trans('admin/categories/message.create.success')); } else { // The given data did not pass validation return redirect()->back()->withInput()->withErrors($category->getErrors()); } // Redirect to the category create page return redirect()->to('admin/settings/categories/create')->with('error', trans('admin/categories/message.create.error')); } /** * Returns a view that makes a form to update a category. * * @author [A. Gianotto] [] * @see CategoriesController::postEdit() method saves the data * @param int $categoryId * @since [v1.0] * @return View */ public function getEdit($categoryId = null) { // Check if the category exists if (is_null($category = Category::find($categoryId))) { // Redirect to the blogs management page return redirect()->to('admin/settings/categories')->with('error', trans('admin/categories/message.does_not_exist')); } // Show the page //$category_options = array('' => 'Top Level') + Category::lists('name', 'id'); $category_options = array('' => 'Top Level') + DB::table('categories')->where('id', '!=', $categoryId)->lists('name', 'id'); $category_types= Helper::categoryTypeList(); return View::make('categories/edit', compact('category')) ->with('category_options', $category_options) ->with('category_types', $category_types); } /** * Validates and stores the updated category data. * * @author [A. Gianotto] [] * @see CategoriesController::getEdit() method that makes the form. * @param int $categoryId * @since [v1.0] * @return Redirect */ public function postEdit($categoryId = null) { // Check if the blog post exists if (is_null($category = Category::find($categoryId))) { // Redirect to the blogs management page return redirect()->to('admin/categories')->with('error', trans('admin/categories/message.does_not_exist')); } // Update the category data $category->name = e(Input::get('name')); $category->category_type = e(Input::get('category_type')); $category->eula_text = e(Input::get('eula_text')); $category->use_default_eula = e(Input::get('use_default_eula', '0')); $category->require_acceptance = e(Input::get('require_acceptance', '0')); $category->checkin_email = e(Input::get('checkin_email', '0')); if ($category->save()) { // Redirect to the new category page return redirect()->to("admin/settings/categories")->with('success', trans('admin/categories/message.update.success')); } // attempt validation else { // The given data did not pass validation return redirect()->back()->withInput()->withErrors($category->getErrors()); } // Redirect to the category management page return redirect()->back()->with('error', trans('admin/categories/message.update.error')); } /** * Validates and marks a category as deleted. * * @author [A. Gianotto] [] * @since [v1.0] * @param int $categoryId * @return Redirect */ public function getDelete($categoryId) { // Check if the category exists if (is_null($category = Category::find($categoryId))) { // Redirect to the blogs management page return redirect()->to('admin/settings/categories')->with('error', trans('admin/categories/message.not_found')); } if ($category->has_models() > 0) { return redirect()->to('admin/settings/categories')->with('error', trans('admin/categories/message.assoc_models')); } elseif ($category->accessories()->count() > 0) { return redirect()->to('admin/settings/categories')->with('error', trans('admin/categories/message.assoc_accessories')); } elseif ($category->consumables()->count() > 0) { return redirect()->to('admin/settings/categories')->with('error', trans('admin/categories/message.assoc_consumables')); } elseif ($category->components()->count() > 0) { return redirect()->to('admin/settings/categories')->with('error', trans('admin/categories/message.assoc_components')); } else { $category->delete(); // Redirect to the locations management page return redirect()->to('admin/settings/categories')->with('success', trans('admin/categories/message.delete.success')); } } /** * Returns a view that invokes the ajax tables which actually contains * the content for the categories detail view, which is generated in getDataView. * * @author [A. Gianotto] [] * @see CategoriesController::getDataView() method that generates the JSON response * @param int $categoryId * @since [v1.8] * @return View */ public function getView($categoryId = null) { $category = Category::find($categoryId); if (isset($category->id)) { return View::make('categories/view', compact('category')); } else { // Prepare the error message $error = trans('admin/categories/message.does_not_exist', compact('id')); // Redirect to the user management page return redirect()->route('categories')->with('error', $error); } } /** * Returns a JSON response with the data to populate the bootstrap table on the * cateory listing page. * * @todo Refactor this nastiness. Assets do not behave the same as accessories, etc. * @author [A. Gianotto] [] * @see CategoriesController::getIndex() method that generates the view * @since [v1.8] * @return String JSON */ public function getDatatable() { // Grab all the categories $categories = Category::with('assets', 'accessories', 'consumables','components'); if (Input::has('search')) { $categories = $categories->TextSearch(e(Input::get('search'))); } if (Input::has('offset')) { $offset = e(Input::get('offset')); } else { $offset = 0; } if (Input::has('limit')) { $limit = e(Input::get('limit')); } else { $limit = 50; } $allowed_columns = ['id','name','category_type']; $order = Input::get('order') === 'asc' ? 'asc' : 'desc'; $sort = in_array(Input::get('sort'), $allowed_columns) ? e(Input::get('sort')) : 'created_at'; $categories = $categories->orderBy($sort, $order); $catCount = $categories->count(); $categories = $categories->skip($offset)->take($limit)->get(); $rows = array(); foreach ($categories as $category) { $actions = ''; $actions .=''; $actions .=''; $rows[] = array( 'id' => $category->id, 'name' => (string)link_to('/admin/settings/categories/'.$category->id.'/view', $category->name) , 'category_type' => ucwords($category->category_type), 'count' => $category->itemCount(), 'acceptance' => ($category->require_acceptance=='1') ? '' : '', //EULA is still not working correctly 'eula' => ($category->getEula()) ? '' : '', 'actions' => $actions ); } $data = array('total' => $catCount, 'rows' => $rows); return $data; } /** * Returns JSON response that contains the data for the category detail page. * * @todo Refactor this nastiness. Assets do not behave * the same as accessories, etc. Need to figure out if I should * make separate controllers, or what. Too much copypasta if I try to work it in here. * @author [A. Gianotto] [] * @see CategoriesController::getView() method that generates the view * @param int $categoryId * @since [v1.8] * @return String JSON */ public function getDataView($categoryId) { $category = Category::find($categoryId); if ($category->category_type =='asset') { $category_assets = $category->assets; } elseif ($category->category_type =='accessory') { $category_assets = $category->accessories; } elseif ($category->category_type =='consumable') { $category_assets = $category->consumables; } elseif ($category->category_type =='component') { $category_assets = $category->components; } if (Input::has('search')) { $category_assets = $category_assets->TextSearch(e(Input::get('search'))); } if (Input::has('offset')) { $offset = e(Input::get('offset')); } else { $offset = 0; } if (Input::has('limit')) { $limit = e(Input::get('limit')); } else { $limit = 50; } $order = Input::get('order') === 'asc' ? 'asc' : 'desc'; $allowed_columns = ['id','name','serial','asset_tag']; $sort = in_array(Input::get('sort'), $allowed_columns) ? Input::get('sort') : 'created_at'; $count = $category_assets->count(); $rows = array(); foreach ($category_assets as $asset) { if ($category->category_type=='asset') { $category_type = 'hardware'; } else { $category_type = $category->category_type; } $actions = ''; $inout=''; if ($asset->deleted_at=='') { $actions = '
'; $actions .= ' '; $actions .= ' '; $actions .= '
'; } elseif ($asset->deleted_at!='') { $actions = ''; } if ($asset->assetstatus) { if ($asset->assetstatus->deployable != 0) { if (($asset->assigned_to !='') && ($asset->assigned_to > 0)) { $inout = ''.trans('general.checkin').''; } else { $inout = ''.trans('general.checkout').''; } } } $rows[] = array( 'id' => $asset->id, 'name' => (string)link_to('/hardware/'.$asset->id.'/view', e($asset->name)), //'model' => $asset->model->name, 'asset_tag' => e($asset->asset_tag), 'serial' => e($asset->serial), 'assigned_to' => ($asset->assigneduser) ? (string)link_to(config('app.url').'/admin/users/'.$asset->assigneduser->id.'/view', $asset->assigneduser->fullName()): '', 'change' => $inout, 'actions' => $actions, 'companyName' => Company::getName($asset), ); } $data = array('total' => $count, 'rows' => $rows); return $data; } }