Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f4095c6dd0 | |||
| ee2c67a65f | |||
| 5614578710 | |||
| 08ef78356d | |||
| 47ac59abef | |||
| 265a896211 | |||
| f7e4fca70d | |||
| bb4c443cd9 | |||
| 7b1d2ee050 | |||
| b3f70a046f | |||
| 734e87f85f | |||
| f371c5fd62 | |||
| 4b3edbd2f5 | |||
| 1f3106b9da | |||
| 9fd3a9a82d | |||
| a6e6991a2d | |||
| 93ba0717d8 | |||
| a8839e0ef4 | |||
| 3e4152c966 | |||
| 1bf34d73f5 | |||
| d1e360d64d | |||
| 3b5b19848c | |||
| 93ba90e837 | |||
| dd28c5709e | |||
| fc70d79a17 | |||
| 42fe481f71 | |||
| 95f1a98b96 | |||
| 6f1e0d6d9f | |||
| ae66bba0f1 | |||
| 32c5a258a7 | |||
| e7ac860f77 | |||
| 899a991a3b | |||
| f26d86dff2 | |||
| 84317f7f50 |
@@ -38,3 +38,5 @@ tests/_data/scenarios
|
||||
tests/_output/*
|
||||
tests/_support/_generated/*
|
||||
/npm-debug.log
|
||||
/storage/oauth-private.key
|
||||
/storage/oauth-public.key
|
||||
|
||||
+4
-3
@@ -1,4 +1,4 @@
|
||||
FROM ubuntu:trusty
|
||||
FROM debian:jessie-slim
|
||||
MAINTAINER Brady Wetherington <uberbrady@gmail.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
@@ -13,7 +13,9 @@ patch \
|
||||
curl \
|
||||
vim \
|
||||
git \
|
||||
mysql-client
|
||||
mysql-client \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
|
||||
RUN php5enmod mcrypt
|
||||
RUN php5enmod gd
|
||||
@@ -55,7 +57,6 @@ RUN chown -R docker /var/www/html
|
||||
|
||||
RUN \
|
||||
rm -r "/var/www/html/storage/private_uploads" && ln -fs "/var/lib/snipeit/data/private_uploads" "/var/www/html/storage/private_uploads" \
|
||||
&& mkdir -p "/var/lib/snipeit/data/uploads/{assets,avatars,barcodes,models,suppliers}" \
|
||||
&& rm -rf "/var/www/html/public/uploads" && ln -fs "/var/lib/snipeit/data/uploads" "/var/www/html/public/uploads" \
|
||||
&& rm -r "/var/www/html/storage/app/backups" && ln -fs "/var/lib/snipeit/dumps" "/var/www/html/storage/app/backups"
|
||||
|
||||
|
||||
@@ -53,3 +53,7 @@ Please see the documentation on [contributing and developing for Snipe-IT](https
|
||||
|
||||
|
||||
Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
|
||||
|
||||
### Security
|
||||
|
||||
To report a security vulnerability, please email security@snipeitapp.com instead of using the issue tracker.
|
||||
|
||||
@@ -183,6 +183,15 @@ class AccessoriesController extends Controller
|
||||
|
||||
// Was the accessory updated?
|
||||
if ($accessory->save()) {
|
||||
|
||||
$logaction = new Actionlog();
|
||||
$logaction->item_type = Accessory::class;
|
||||
$logaction->item_id = $accessory->id;
|
||||
$logaction->created_at = date("Y-m-d H:i:s");
|
||||
$logaction->user_id = Auth::user()->id;
|
||||
$log = $logaction->logaction('update');
|
||||
|
||||
|
||||
// Redirect to the updated accessory page
|
||||
return redirect()->to("admin/accessories")->with('success', trans('admin/accessories/message.update.success'));
|
||||
}
|
||||
@@ -215,6 +224,13 @@ class AccessoriesController extends Controller
|
||||
} else {
|
||||
$accessory->delete();
|
||||
|
||||
$logaction = new Actionlog();
|
||||
$logaction->item_type = Accessory::class;
|
||||
$logaction->item_id = $accessory->id;
|
||||
$logaction->created_at = date("Y-m-d H:i:s");
|
||||
$logaction->user_id = Auth::user()->id;
|
||||
$log = $logaction->logaction('deleted');
|
||||
|
||||
// Redirect to the locations management page
|
||||
return redirect()->to('admin/accessories')->with('success', trans('admin/accessories/message.delete.success'));
|
||||
|
||||
|
||||
@@ -454,7 +454,20 @@ class AssetsController extends Controller
|
||||
|
||||
if ($asset->save()) {
|
||||
// Redirect to the new asset page
|
||||
\Session::flash('success', trans('admin/hardware/message.update.success'));
|
||||
|
||||
$logaction = new Actionlog();
|
||||
$logaction->item_type = Asset::class;
|
||||
$logaction->item_id = $asset->id;
|
||||
$logaction->created_at = date("Y-m-d H:i:s");
|
||||
if (Input::has('rtd_location_id')) {
|
||||
$logaction->location_id = e(Input::get('rtd_location_id'));
|
||||
}
|
||||
$logaction->user_id = Auth::user()->id;
|
||||
$log = $logaction->logaction('update');
|
||||
|
||||
|
||||
|
||||
\Session::flash('success', trans('admin/hardware/message.update.success'));
|
||||
return response()->json(['redirect_url' => route("view/hardware", $assetId)]);
|
||||
}
|
||||
\Input::flash();
|
||||
@@ -488,6 +501,13 @@ class AssetsController extends Controller
|
||||
|
||||
$asset->delete();
|
||||
|
||||
$logaction = new Actionlog();
|
||||
$logaction->item_type = Asset::class;
|
||||
$logaction->item_id = $asset->id;
|
||||
$logaction->created_at = date("Y-m-d H:i:s");
|
||||
$logaction->user_id = Auth::user()->id;
|
||||
$log = $logaction->logaction('deleted');
|
||||
|
||||
// Redirect to the asset management page
|
||||
return redirect()->to('hardware')->with('success', trans('admin/hardware/message.delete.success'));
|
||||
|
||||
|
||||
@@ -189,6 +189,15 @@ class ConsumablesController extends Controller
|
||||
$consumable->qty = Helper::ParseFloat(e(Input::get('qty')));
|
||||
|
||||
if ($consumable->save()) {
|
||||
|
||||
$logaction = new Actionlog();
|
||||
$logaction->item_type = Consumable::class;
|
||||
$logaction->item_id = $consumable->id;
|
||||
$logaction->created_at = date("Y-m-d H:i:s");
|
||||
$logaction->user_id = Auth::user()->id;
|
||||
$log = $logaction->logaction('update');
|
||||
|
||||
|
||||
return redirect()->to("admin/consumables")->with('success', trans('admin/consumables/message.update.success'));
|
||||
}
|
||||
|
||||
@@ -216,6 +225,13 @@ class ConsumablesController extends Controller
|
||||
|
||||
$consumable->delete();
|
||||
|
||||
$logaction = new Actionlog();
|
||||
$logaction->item_type = Consumable::class;
|
||||
$logaction->item_id = $consumable->id;
|
||||
$logaction->created_at = date("Y-m-d H:i:s");
|
||||
$logaction->user_id = Auth::user()->id;
|
||||
$log = $logaction->logaction('deleted');
|
||||
|
||||
// Redirect to the locations management page
|
||||
return redirect()->to('admin/consumables')->with('success', trans('admin/consumables/message.delete.success'));
|
||||
|
||||
|
||||
@@ -412,6 +412,13 @@ class LicensesController extends Controller
|
||||
$licenseseats->delete();
|
||||
$license->delete();
|
||||
|
||||
$logaction = new Actionlog();
|
||||
$logaction->item_type = License::class;
|
||||
$logaction->item_id = $license->id;
|
||||
$logaction->created_at = date("Y-m-d H:i:s");
|
||||
$logaction->user_id = Auth::user()->id;
|
||||
$log = $logaction->logaction('deleted');
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -744,7 +751,7 @@ class LicensesController extends Controller
|
||||
public function getView($licenseId = null)
|
||||
{
|
||||
|
||||
$license = License::find($licenseId);
|
||||
$license = License::withTrashed()->find($licenseId);
|
||||
$license = $license->load('assignedusers', 'licenseSeats.user', 'licenseSeats.asset');
|
||||
|
||||
if (isset($license->id)) {
|
||||
|
||||
@@ -356,12 +356,18 @@ class ReportsController extends Controller
|
||||
$activity_item = '<a href="'.route('view/hardware', $activity->item_id).'">'.e($activity->item->asset_tag).' - '. e($activity->item->showAssetName()).'</a>';
|
||||
$item_type = 'asset';
|
||||
} elseif ($activity->item) {
|
||||
$activity_item = '<a href="' . route('view/' . $activity->itemType(),
|
||||
$activity->item_id) . '">' . e($activity->item->name) . '</a>';
|
||||
|
||||
if ($activity->item->deleted_at!='') {
|
||||
$activity_item = '<del>'. e($activity->item->name).'</del>';
|
||||
} else {
|
||||
$activity_item = '<a href="' . route('view/' . $activity->itemType(),
|
||||
$activity->item_id) . '">' . e($activity->item->name) . '</a>';
|
||||
}
|
||||
|
||||
$item_type = $activity->itemType();
|
||||
|
||||
} else {
|
||||
$activity_item = "unkonwn";
|
||||
$activity_item = "unknown (deleted)";
|
||||
$item_type = "null";
|
||||
}
|
||||
|
||||
@@ -580,6 +586,10 @@ class ReportsController extends Controller
|
||||
$header[] = trans('admin/hardware/form.expected_checkin');
|
||||
}
|
||||
|
||||
if (e(Input::get('notes')) == '1') {
|
||||
$header[] = trans('general.notes');
|
||||
}
|
||||
|
||||
|
||||
foreach ($customfields as $customfield) {
|
||||
if (e(Input::get($customfield->db_column_name())) == '1') {
|
||||
@@ -724,6 +734,14 @@ class ReportsController extends Controller
|
||||
}
|
||||
}
|
||||
|
||||
if (e(Input::get('notes')) == '1') {
|
||||
if ($asset->notes) {
|
||||
$row[] = '"' .$asset->notes . '"';
|
||||
} else {
|
||||
$row[] = '';
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($customfields as $customfield) {
|
||||
$column_name = $customfield->db_column_name();
|
||||
if (e(Input::get($customfield->db_column_name())) == '1') {
|
||||
|
||||
@@ -425,17 +425,12 @@ class UsersController extends Controller
|
||||
|
||||
// Check if we are not trying to delete ourselves
|
||||
if ($user->id === Auth::user()->id) {
|
||||
// Prepare the error message
|
||||
$error = trans('admin/users/message.error.delete');
|
||||
|
||||
// Redirect to the user management page
|
||||
return redirect()->route('users')->with('error', $error);
|
||||
return redirect()->route('users')->with('error', trans('admin/users/message.error.delete'));
|
||||
}
|
||||
|
||||
|
||||
// Do we have permission to delete this user?
|
||||
if ((!Auth::user()->isSuperUser()) || (config('app.lock_passwords'))) {
|
||||
// Redirect to the user management page
|
||||
if ((Gate::denies('users.delete') || (config('app.lock_passwords')))) {
|
||||
return redirect()->route('users')->with('error', 'Insufficient permissions!');
|
||||
}
|
||||
|
||||
@@ -459,18 +454,11 @@ class UsersController extends Controller
|
||||
|
||||
// Delete the user
|
||||
$user->delete();
|
||||
|
||||
// Prepare the success message
|
||||
$success = trans('admin/users/message.success.delete');
|
||||
|
||||
// Redirect to the user management page
|
||||
return redirect()->route('users')->with('success', $success);
|
||||
} catch (UserNotFoundException $e) {
|
||||
// Prepare the error message
|
||||
$error = trans('admin/users/message.user_not_found', compact('id'));
|
||||
|
||||
// Redirect to the user management page
|
||||
return redirect()->route('users')->with('error', $error);
|
||||
} catch (UserNotFoundException $e) {
|
||||
return redirect()->route('users')->with('error', trans('admin/users/message.user_not_found', compact('id')));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -522,10 +510,7 @@ class UsersController extends Controller
|
||||
if (($key = array_search(Auth::user()->id, $user_raw_array)) !== false) {
|
||||
unset($user_raw_array[$key]);
|
||||
}
|
||||
|
||||
if (!Auth::user()->isSuperUser()) {
|
||||
return redirect()->route('users')->with('error', trans('admin/users/message.insufficient_permissions'));
|
||||
}
|
||||
|
||||
|
||||
if (!config('app.lock_passwords')) {
|
||||
|
||||
@@ -865,7 +850,6 @@ class UsersController extends Controller
|
||||
'permissions' => '{"user":1}',
|
||||
'notes' => 'Imported user'
|
||||
);
|
||||
//dd($newuser);
|
||||
|
||||
DB::table('users')->insert($newuser);
|
||||
|
||||
@@ -1107,7 +1091,6 @@ class UsersController extends Controller
|
||||
$user = User::find($userId);
|
||||
$destinationPath = config('app.private_uploads').'/users';
|
||||
|
||||
// the license is valid
|
||||
if (isset($user->id)) {
|
||||
|
||||
if (!Company::isCurrentUserHasAccess($user)) {
|
||||
|
||||
+1
-1
@@ -819,7 +819,7 @@ Route::group([ 'prefix' => 'admin','middleware' => ['web','auth']], function ()
|
||||
Route::post('{userId}/edit', [ 'uses' => 'UsersController@postEdit', 'middleware' => ['authorize:users.edit'] ]);
|
||||
Route::get('{userId}/clone', [ 'as' => 'clone/user', 'uses' => 'UsersController@getClone', 'middleware' => ['authorize:users.edit'] ]);
|
||||
Route::post('{userId}/clone', [ 'uses' => 'UsersController@postCreate', 'middleware' => ['authorize:users.edit'] ]);
|
||||
Route::get('{userId}/delete', [ 'as' => 'delete/user', 'uses' => 'UsersController@getDelete', 'middleware' => ['authorize:users.edit'] ]);
|
||||
Route::get('{userId}/delete', [ 'as' => 'delete/user', 'uses' => 'UsersController@getDelete', 'middleware' => ['authorize:users.delete'] ]);
|
||||
Route::get('{userId}/restore', [ 'as' => 'restore/user', 'uses' => 'UsersController@getRestore', 'middleware' => ['authorize:users.edit'] ]);
|
||||
Route::get('{userId}/view', [ 'as' => 'view/user', 'uses' => 'UsersController@getView' , 'middleware' => ['authorize:users.view'] ]);
|
||||
Route::get('{userId}/unsuspend', [ 'as' => 'unsuspend/user', 'uses' => 'UsersController@getUnsuspend', 'middleware' => ['authorize:users.edit'] ]);
|
||||
|
||||
@@ -154,6 +154,7 @@ class Accessory extends SnipeModel
|
||||
$query->where('locations.name', 'LIKE', '%'.$search.'%');
|
||||
});
|
||||
})->orWhere('accessories.name', 'LIKE', '%'.$search.'%')
|
||||
->orWhere('accessories.model_number', 'LIKE', '%'.$search.'%')
|
||||
->orWhere('accessories.order_number', 'LIKE', '%'.$search.'%')
|
||||
->orWhere('accessories.purchase_cost', 'LIKE', '%'.$search.'%')
|
||||
->orWhere('accessories.purchase_date', 'LIKE', '%'.$search.'%');
|
||||
|
||||
@@ -485,9 +485,12 @@ class Asset extends Depreciable
|
||||
$settings = \App\Models\Setting::getSettings();
|
||||
|
||||
if ($settings->auto_increment_assets == '1') {
|
||||
$asset_tag = \DB::table('assets')
|
||||
$temp_asset_tag = \DB::table('assets')
|
||||
->where('physical', '=', '1')
|
||||
->max('id');
|
||||
->max('asset_tag');
|
||||
|
||||
$asset_tag_digits = preg_replace('/\D/', '', $temp_asset_tag);
|
||||
$asset_tag = preg_replace('/^0*/', '', $asset_tag_digits);
|
||||
|
||||
if ($settings->zerofill_count > 0) {
|
||||
return $settings->auto_increment_prefix.Asset::zerofill(($asset_tag + 1),$settings->zerofill_count);
|
||||
|
||||
+1
-1
@@ -277,7 +277,7 @@ class Ldap extends Model
|
||||
$global_count += $results['count'];
|
||||
$result_set = array_merge($result_set, $results);
|
||||
|
||||
ldap_control_paged_result_response($ldapconn, $search_results, $cookie);
|
||||
@ldap_control_paged_result_response($ldapconn, $search_results, $cookie);
|
||||
|
||||
} while ($cookie !== null && $cookie != '');
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ class Supplier extends SnipeModel
|
||||
'address' => 'min:3|max:50',
|
||||
'address2' => 'min:2|max:50',
|
||||
'city' => 'min:3|max:255',
|
||||
'state' => 'min:0|max:2',
|
||||
'state' => 'min:0|max:32',
|
||||
'country' => 'min:0|max:2',
|
||||
'fax' => 'min:7|max:20',
|
||||
'phone' => 'min:7|max:20',
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
return array (
|
||||
'app_version' => 'v3.6.2',
|
||||
'build_version' => '10',
|
||||
'hash_version' => 'g927a12f',
|
||||
'full_hash' => 'v3.6.1-10-g927a12f',
|
||||
'app_version' => 'v3.6.5',
|
||||
'build_version' => '1',
|
||||
'hash_version' => 'gee2c67a',
|
||||
'full_hash' => 'v3.6.5-gee2c67a',
|
||||
);
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
files:
|
||||
- source: /resources/lang/en/**/*.php
|
||||
translation: '**/%original_file_name%'
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class IncreaseSizeOfStateInSuppliers extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('suppliers', function ($table) {
|
||||
$table->string('state', 32)->nullable()->default(null)->change();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('suppliers', function ($table) {
|
||||
$table->string('state', 2)->nullable()->default(null)->change();
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -18,7 +18,7 @@ else
|
||||
fi
|
||||
|
||||
# create data directories
|
||||
for dir in 'data/private_uploads' 'data/uploads' 'data/uploads/avatars' 'data/uploads/models' 'data/uploads/suppliers' 'dumps'; do
|
||||
for dir in 'data/private_uploads' 'data/uploads' 'data/uploads/avatars' 'data/uploads/barcodes' 'data/uploads/models' 'data/uploads/suppliers' 'dumps'; do
|
||||
mkdir -p "/var/lib/snipeit/$dir"
|
||||
done
|
||||
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
var elixir = require('laravel-elixir');
|
||||
require('laravel-elixir-codeception');
|
||||
require('laravel-elixir-codeception-standalone');
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Elixir Asset Management
|
||||
@@ -38,7 +38,7 @@ elixir(function(mix) {
|
||||
mix.version(['assets/css/app.css','assets/js/all.js']);
|
||||
|
||||
|
||||
mix.codeception();
|
||||
mix.codeception(null, { flags: '--report' });
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"prod": "gulp --production",
|
||||
"dev": "gulp watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"bootstrap-sass": "^3.3.7",
|
||||
"gulp": "^3.9.1",
|
||||
"jquery": "^3.1.0",
|
||||
"laravel-elixir": "^6.0.0-11",
|
||||
"laravel-elixir-vue-2": "^0.2.0",
|
||||
"laravel-elixir-webpack-official": "^1.0.2",
|
||||
"lodash": "^4.16.2",
|
||||
"vue": "^2.0.1",
|
||||
"vue-resource": "^1.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"laravel-elixir-codeception": "^0.2.0"
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,7 @@
|
||||
{{-- Page content --}}
|
||||
@section('content')
|
||||
|
||||
<form role="form" action="{{ url('/login') }}" method="POST">
|
||||
<form role="form" action="{{ url('/login') }}" method="POST" autocomplete="off">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
|
||||
|
||||
<div class="container">
|
||||
@@ -35,7 +35,7 @@
|
||||
{!! $errors->first('username', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
||||
</div>
|
||||
<div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">
|
||||
<input class="form-control" placeholder="{{ trans('admin/users/table.password') }}" name="password" type="password">
|
||||
<input class="form-control" placeholder="{{ trans('admin/users/table.password') }}" name="password" type="password" autocomplete="off">
|
||||
{!! $errors->first('password', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
||||
</div>
|
||||
<div class="checkbox">
|
||||
|
||||
@@ -15,7 +15,6 @@
|
||||
<!-- Asset Tag -->
|
||||
<div class="form-group {{ $errors->has('asset_tag') ? ' has-error' : '' }}">
|
||||
<label for="asset_tag" class="col-md-3 control-label">{{ trans('admin/hardware/form.tag') }}</label>
|
||||
</label>
|
||||
<div class="col-md-7 col-sm-12{{ (\App\Helpers\Helper::checkIfRequired($item, 'asset_tag')) ? ' required' : '' }}">
|
||||
@if ($item->id)
|
||||
<input class="form-control" type="text" name="asset_tag" id="asset_tag" value="{{ Input::old('asset_tag', $item->asset_tag) }}" />
|
||||
@@ -30,7 +29,6 @@
|
||||
<!-- Model -->
|
||||
<div class="form-group {{ $errors->has('model_id') ? ' has-error' : '' }}">
|
||||
<label for="parent" class="col-md-3 control-label">{{ trans('admin/hardware/form.model') }}</label>
|
||||
</label>
|
||||
<div class="col-md-7 col-sm-10{{ (\App\Helpers\Helper::checkIfRequired($item, 'model_id')) ? ' required' : '' }}">
|
||||
@if (isset($selected_model))
|
||||
{{ Form::select('model_id', $model_list , $selected_model->id, array('class'=>'select2 model', 'style'=>'width:100%','id' =>'model_select_id')) }}
|
||||
@@ -204,7 +202,7 @@ $(function () {
|
||||
case 'model':
|
||||
show_er('#modal-manufacturer_id');
|
||||
show_er('#modal-category_id');
|
||||
show_er('#modal-modelno');
|
||||
show_er('#modal-model_number');
|
||||
show_er('#modal-fieldset_id');
|
||||
break;
|
||||
|
||||
@@ -418,4 +416,4 @@ $(function () {
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@stop
|
||||
@stop
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
</div><!-- /.box-header -->
|
||||
|
||||
<div class="box-body">
|
||||
<form id="create-form" class="form-horizontal" method="post" action="" autocomplete="off" role="form" enctype="multipart/form-data">
|
||||
<form id="create-form" class="form-horizontal" method="post" action="{{ \Request::url() }}" autocomplete="off" role="form" enctype="multipart/form-data">
|
||||
<!-- CSRF Token -->
|
||||
{{ csrf_field() }}
|
||||
@yield('inputFields')
|
||||
@@ -54,4 +54,4 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@stop
|
||||
@stop
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
</div>
|
||||
|
||||
<div class="dynamic-form-row">
|
||||
<div class="col-md-4 col-xs-12"><label for="modal-modelno">{{ trans('general.model_no') }}:</label></div>
|
||||
<div class="col-md-8 col-xs-12"><input type='text' id='modal-modelno' class="form-control"></div>
|
||||
<div class="col-md-4 col-xs-12"><label for="modal-model_number">{{ trans('general.model_no') }}:</label></div>
|
||||
<div class="col-md-8 col-xs-12"><input type='text' id='modal-model_number' class="form-control"></div>
|
||||
</div>
|
||||
|
||||
<div class="dynamic-form-row">
|
||||
|
||||
@@ -159,11 +159,18 @@
|
||||
{{ trans('admin/hardware/form.expected_checkin') }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="checkbox col-md-12">
|
||||
<label>
|
||||
{{ Form::checkbox('notes', '1') }}
|
||||
{{ trans('general.notes') }}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
@foreach ($customfields as $customfield)
|
||||
|
||||
@foreach ($customfields as $customfield)
|
||||
<div class="checkbox col-md-12">
|
||||
<label>
|
||||
{{ Form::checkbox($customfield->db_column_name(), '1') }}
|
||||
|
||||
@@ -117,7 +117,7 @@
|
||||
name="username"
|
||||
id="username"
|
||||
value="{{ Input::old('username', $user->username) }}"
|
||||
autocomplete="false"
|
||||
autocomplete="off"
|
||||
readonly
|
||||
onfocus="this.removeAttribute('readonly');"
|
||||
{{ ((config('app.lock_passwords') && ($user->id)) ? ' disabled' : '') }}
|
||||
@@ -146,7 +146,7 @@
|
||||
class="form-control"
|
||||
id="password"
|
||||
value=""
|
||||
autocomplete="false"
|
||||
autocomplete="off"
|
||||
readonly
|
||||
onfocus="this.removeAttribute('readonly');"
|
||||
{{ ((config('app.lock_passwords') && ($user->id)) ? ' disabled' : '') }}
|
||||
|
||||
+155
-142
@@ -22,7 +22,6 @@ fi
|
||||
clear
|
||||
|
||||
name="snipeit"
|
||||
si="Snipe-IT"
|
||||
hostname="$(hostname)"
|
||||
fqdn="$(hostname --fqdn)"
|
||||
ans=default
|
||||
@@ -36,16 +35,16 @@ spin[1]="\\"
|
||||
spin[2]="|"
|
||||
spin[3]="/"
|
||||
|
||||
rm -rf $tmp/
|
||||
rm -rf ${tmp:?}
|
||||
mkdir $tmp
|
||||
|
||||
# Debian/Ubuntu friendly f(x)s
|
||||
progress () {
|
||||
while kill -0 $pid > /dev/null 2>&1
|
||||
while kill -0 "$pid" > /dev/null 2>&1
|
||||
do
|
||||
for i in "${spin[@]}"
|
||||
do
|
||||
if [ -e /proc/$pid ]; then
|
||||
if [ -e /proc/"$pid" ]; then
|
||||
echo -ne "\b$i"
|
||||
sleep .1
|
||||
else
|
||||
@@ -56,24 +55,26 @@ progress () {
|
||||
}
|
||||
|
||||
vhenvfile () {
|
||||
sudo ls -al /etc/apache2/mods-enabled/rewrite.load >> /var/log/snipeit-install.log 2>&1
|
||||
find /etc/apache2/mods-enabled -maxdepth 1 -name 'rewrite.load' >/dev/null 2>&1
|
||||
apachefile=/etc/apache2/sites-available/$name.conf
|
||||
echo "* Create Virtual host for apache."
|
||||
echo >> $apachefile "<VirtualHost *:80>"
|
||||
echo >> $apachefile "ServerAdmin webmaster@localhost"
|
||||
echo >> $apachefile " <Directory $webdir/$name/public>"
|
||||
echo >> $apachefile " Require all granted"
|
||||
echo >> $apachefile " AllowOverride All"
|
||||
echo >> $apachefile " </Directory>"
|
||||
echo >> $apachefile " DocumentRoot $webdir/$name/public"
|
||||
echo >> $apachefile " ServerName $fqdn"
|
||||
echo >> $apachefile " ErrorLog /var/log/apache2/snipeIT.error.log"
|
||||
echo >> $apachefile " CustomLog /var/log/apache2/access.log combined"
|
||||
echo >> $apachefile "</VirtualHost>"
|
||||
{
|
||||
echo "<VirtualHost *:80>"
|
||||
echo "ServerAdmin webmaster@localhost"
|
||||
echo "<Directory $webdir/$name/public>"
|
||||
echo " Require all granted"
|
||||
echo " AllowOverride All"
|
||||
echo " </Directory>"
|
||||
echo " DocumentRoot $webdir/$name/public"
|
||||
echo " ServerName $fqdn"
|
||||
echo " ErrorLog /var/log/apache2/snipeIT.error.log"
|
||||
echo " CustomLog /var/log/apache2/access.log combined"
|
||||
echo "</VirtualHost>"
|
||||
} >> $apachefile
|
||||
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
||||
a2ensite $name.conf >> /var/log/snipeit-install.log 2>&1
|
||||
log "a2ensite $name.conf"
|
||||
|
||||
cat > $webdir/$name/.env <<-EOF
|
||||
cat > "$webdir/$name/.env" <<-EOF
|
||||
#Created By Snipe-it Installer
|
||||
APP_TIMEZONE=$(cat /etc/timezone)
|
||||
DB_HOST=localhost
|
||||
@@ -86,44 +87,45 @@ vhenvfile () {
|
||||
}
|
||||
|
||||
perms () {
|
||||
if [ $distro == "debian" ]; then
|
||||
#Change permissions on directories
|
||||
chmod -R 755 $webdir/$name/storage
|
||||
chmod -R 755 $webdir/$name/storage/private_uploads
|
||||
chmod -R 755 $webdir/$name/public/uploads
|
||||
chown -R www-data:www-data /var/www/$name
|
||||
# echo "* Finished permission changes."
|
||||
else
|
||||
sudo chmod -R 755 $webdir/$name/storage
|
||||
sudo chmod -R 755 $webdir/$name/storage/private_uploads
|
||||
sudo chmod -R 755 $webdir/$name/public/uploads
|
||||
sudo chown -R www-data:www-data /var/www/$name
|
||||
fi
|
||||
chmod_dirs=( "$webdir/$name/storage" )
|
||||
chmod_dirs+=( "$webdir/$name/storage/private_uploads" )
|
||||
chmod_dirs+=( "$webdir/$name/public/uploads" )
|
||||
#Change permissions on directories
|
||||
for chmod_dir in "${chmod_dirs[@]}"
|
||||
do
|
||||
chmod -R 755 "$chmod_dir"
|
||||
done
|
||||
}
|
||||
|
||||
log () {
|
||||
eval "$@" |& tee -a /var/log/snipeit-install.log >/dev/null 2>&1
|
||||
}
|
||||
|
||||
#CentOS Friendly f(x)s
|
||||
function isinstalled {
|
||||
if yum list installed "$@" >/dev/null 2>&1; then
|
||||
true
|
||||
else
|
||||
false
|
||||
fi
|
||||
if yum list installed "$@" >/dev/null 2>&1; then
|
||||
true
|
||||
else
|
||||
false
|
||||
fi
|
||||
}
|
||||
|
||||
if [ -f /etc/lsb-release ]; then
|
||||
distro="$(lsb_release -s -i )"
|
||||
version="$(lsb_release -s -r)"
|
||||
. /etc/lsb-release
|
||||
distro="${DISTRIB_ID,,}"
|
||||
version="$DISTRIB_RELEASE"
|
||||
codename="$DISTRIB_CODENAME"
|
||||
elif [ -f /etc/os-release ]; then
|
||||
distro="$(. /etc/os-release && echo $ID)"
|
||||
version="$(. /etc/os-release && echo $VERSION_ID)"
|
||||
#Order is important here. If /etc/os-release and /etc/centos-release exist, we're on centos 7.
|
||||
#If only /etc/centos-release exist, we're on centos6(or earlier). Centos-release is less parsable,
|
||||
#so lets assume that it's version 6 (Plus, who would be doing a new install of anything on centos5 at this point..)
|
||||
distro="$(. /etc/os-release && echo $ID)"
|
||||
version="$(. /etc/os-release && echo $VERSION_ID)"
|
||||
#Order is important here. If /etc/os-release and /etc/centos-release exist, we're on centos 7.
|
||||
#If only /etc/centos-release exist, we're on centos6(or earlier). Centos-release is less parsable,
|
||||
#so lets assume that it's version 6 (Plus, who would be doing a new install of anything on centos5 at this point..)
|
||||
elif [ -f /etc/centos-release ]; then
|
||||
distro="Centos"
|
||||
version="6"
|
||||
else
|
||||
distro="unsupported"
|
||||
distro="unsupported"
|
||||
fi
|
||||
|
||||
|
||||
@@ -177,7 +179,7 @@ read setpw
|
||||
|
||||
case $setpw in
|
||||
[yY] | [yY][Ee][Ss] )
|
||||
mysqluserpw="$(echo `< /dev/urandom tr -dc _A-Za-z-0-9 | head -c16`)"
|
||||
mysqluserpw="$(< /dev/urandom tr -dc _A-Za-z-0-9 2>&1 | head -c16)"
|
||||
ans="yes"
|
||||
;;
|
||||
[nN] | [n|N][O|o] )
|
||||
@@ -192,17 +194,19 @@ esac
|
||||
done
|
||||
|
||||
#Snipe says we need a new 32bit key, so let's create one randomly and inject it into the file
|
||||
random32="$(echo `< /dev/urandom tr -dc _A-Za-z-0-9 | head -c32`)"
|
||||
random32="$(< /dev/urandom tr -dc _A-Za-z-0-9 2>&1 | head -c32)"
|
||||
|
||||
#db_setup.sql will be injected to the database during install.
|
||||
#Again, this file should be removed, which will be a prompt at the end of the script.
|
||||
dbsetup=$tmp/db_setup.sql
|
||||
echo >> $dbsetup "CREATE DATABASE snipeit;"
|
||||
echo >> $dbsetup "GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
||||
dbsetup="$tmp/db_setup.sql"
|
||||
{
|
||||
echo "CREATE DATABASE snipeit;"
|
||||
echo "GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
||||
} >> "$dbsetup"
|
||||
|
||||
#Let us make it so only root can read the file. Again, this isn't best practice, so please remove these after the install.
|
||||
chown root:root $dbsetup
|
||||
chmod 700 $dbsetup
|
||||
chown root:root "$dbsetup"
|
||||
chmod 700 "$dbsetup"
|
||||
|
||||
## TODO: Progress tracker on each step
|
||||
|
||||
@@ -216,27 +220,28 @@ case $distro in
|
||||
|
||||
webdir=/var/www
|
||||
echo -e "\n* Updating Debian packages in the background... ${spin[0]}\n"
|
||||
apt-get update >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "apt-get update" & pid=$!
|
||||
wait
|
||||
apt-get upgrade >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "apt-get upgrade" & pid=$!
|
||||
wait
|
||||
echo -e "\n* Installing packages... ${spin[0]}\n"
|
||||
echo -e "\n* Going to suppress more messages that you don't need to worry about. Please wait... ${spin[0]}"
|
||||
DEBIAN_FRONTEND=noninteractive apt-get -y install mariadb-server mariadb-client apache2 git unzip php5 php5-mcrypt php5-curl php5-mysql php5-gd php5-ldap libapache2-mod-php5 curl >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "DEBIAN_FRONTEND=noninteractive apt-get -y install mariadb-server mariadb-client apache2 git unzip php5 php5-mcrypt php5-curl php5-mysql php5-gd php5-ldap libapache2-mod-php5 curl" & pid=$!
|
||||
progress
|
||||
wait
|
||||
echo -e "\n* Cloning Snipeit, extracting to $webdir/$name..."
|
||||
git clone https://github.com/snipe/snipe-it $webdir/$name >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "git clone https://github.com/snipe/snipe-it $webdir/$name" & pid=$!
|
||||
progress
|
||||
php5enmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
||||
a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
||||
log "php5enmod mcrypt"
|
||||
log "a2enmod rewrite"
|
||||
vhenvfile
|
||||
wait
|
||||
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
||||
a2ensite $name.conf
|
||||
log "a2ensite $name.conf"
|
||||
echo -e "* Modify the Snipe-It files necessary for a production environment.\n* Securing Mysql"
|
||||
# Have user set own root password when securing install
|
||||
# and just set the snipeit database user at the beginning
|
||||
service mysql status >/dev/null || service mysql start
|
||||
/usr/bin/mysql_secure_installation
|
||||
echo -e "* Creating Mysql Database and User.\n## Please Input your MySQL/MariaDB root password: "
|
||||
mysql -u root -p < $dbsetup
|
||||
@@ -244,6 +249,7 @@ case $distro in
|
||||
curl -sS https://getcomposer.org/installer | php
|
||||
php composer.phar install --no-dev --prefer-source
|
||||
perms
|
||||
chown -R www-data:www-data "/var/www/$name"
|
||||
service apache2 restart
|
||||
;;
|
||||
ubuntu)
|
||||
@@ -253,33 +259,37 @@ case $distro in
|
||||
#composer install, set permissions, restart apache.
|
||||
|
||||
webdir=/var/www
|
||||
echo -ne "\n* Adding MariaDB repo in the background... ${spin[0]}"
|
||||
(echo "deb [arch=amd64,i386] http://ftp.hosteurope.de/mirror/mariadb.org/repo/10.1/ubuntu $codename main" | tee /etc/apt/sources.list.d/mariadb.list >/dev/null 2>&1)
|
||||
log "apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8"
|
||||
echo -ne "\n* Updating with apt-get update in the background... ${spin[0]}"
|
||||
sudo apt-get update >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
rm /var/lib/dpkg/lock
|
||||
log "apt-get update" & pid=$!
|
||||
[ -f /var/lib/dpkg/lock ] && rm -f /var/lib/dpkg/lock
|
||||
progress
|
||||
echo -ne "\n* Upgrading packages with apt-get upgrade in the background... ${spin[0]}"
|
||||
sudo apt-get -y upgrade >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "apt-get -y upgrade" & pid=$!
|
||||
progress
|
||||
echo -ne "\n* Setting up LAMP in the background... ${spin[0]}\n"
|
||||
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y lamp-server^ >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server mariadb-client apache2 libapache2-mod-php curl" & pid=$!
|
||||
progress
|
||||
if [ "$version" == "16.04" ]; then
|
||||
sudo apt-get install -y git unzip php php-mcrypt php-curl php-mysql php-gd php-ldap php-zip php-mbstring php-xml >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "apt-get install -y git unzip php php-mcrypt php-curl php-mysql php-gd php-ldap php-zip php-mbstring php-xml" & pid=$!
|
||||
progress
|
||||
sudo phpenmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
||||
sudo phpenmod mbstring >> /var/log/snipeit-install 2>&1
|
||||
sudo a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
||||
log "phpenmod mcrypt"
|
||||
log "phpenmod mbstring"
|
||||
log "a2enmod rewrite"
|
||||
else
|
||||
sudo apt-get install -y git unzip php5 php5-mcrypt php5-curl php5-mysql php5-gd php5-ldap >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "apt-get install -y git unzip php5 php5-mcrypt php5-curl php5-mysql php5-gd php5-ldap" & pid=$!
|
||||
progress
|
||||
sudo php5enmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
||||
sudo a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
||||
log "php5enmod mcrypt"
|
||||
log "a2enmod rewrite"
|
||||
fi
|
||||
echo -ne "\n* Cloning Snipeit, extracting to $webdir/$name... ${spin[0]}"
|
||||
git clone https://github.com/snipe/snipe-it $webdir/$name >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||
log "git clone https://github.com/snipe/snipe-it $webdir/$name" & pid=$!
|
||||
progress
|
||||
vhenvfile
|
||||
echo -e "* MySQL Phase next.\n"
|
||||
service mysql status >/dev/null || service mysql start
|
||||
/usr/bin/mysql_secure_installation
|
||||
echo -e "* Creating MySQL Database and user.\n* Please Input your MySQL/MariaDB root password created in the previous step.: "
|
||||
mysql -u root -p < $dbsetup
|
||||
@@ -288,9 +298,10 @@ case $distro in
|
||||
curl -sS https://getcomposer.org/installer | php
|
||||
php composer.phar install --no-dev --prefer-source
|
||||
perms
|
||||
chown -R www-data:www-data "/var/www/$name"
|
||||
service apache2 restart
|
||||
;;
|
||||
centos )
|
||||
centos)
|
||||
if [ "$version" == "6" ]; then
|
||||
##################################### Install for Centos/Redhat 6 ##############################################
|
||||
|
||||
@@ -299,35 +310,37 @@ case $distro in
|
||||
echo ""
|
||||
echo "## Adding IUS, epel-release and mariaDB repos.";
|
||||
mariadbRepo=/etc/yum.repos.d/MariaDB.repo
|
||||
touch $mariadbRepo
|
||||
echo >> $mariadbRepo "[mariadb]"
|
||||
echo >> $mariadbRepo "name = MariaDB"
|
||||
echo >> $mariadbRepo "baseurl = http://yum.mariadb.org/10.0/centos6-amd64"
|
||||
echo >> $mariadbRepo "gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB"
|
||||
echo >> $mariadbRepo "gpgcheck=1"
|
||||
echo >> $mariadbRepo "enable=1"
|
||||
touch "$mariadbRepo"
|
||||
{
|
||||
echo "[mariadb]"
|
||||
echo "name = MariaDB"
|
||||
echo "baseurl = http://yum.mariadb.org/10.0/centos6-amd64"
|
||||
echo "gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB"
|
||||
echo "gpgcheck=1"
|
||||
echo "enable=1"
|
||||
} >> "$mariadbRepo"
|
||||
|
||||
yum -y install wget epel-release >> /var/log/snipeit-install.log 2>&1
|
||||
wget -P $tmp/ https://centos6.iuscommunity.org/ius-release.rpm >> /var/log/snipeit-install.log 2>&1
|
||||
rpm -Uvh $tmp/ius-release*.rpm >> /var/log/snipeit-install.log 2>&1
|
||||
log "yum -y install wget epel-release"
|
||||
log "wget -P "$tmp/" https://centos6.iuscommunity.org/ius-release.rpm"
|
||||
log "rpm -Uvh "$tmp/ius-release*.rpm""
|
||||
|
||||
#Install PHP and other needed stuff.
|
||||
echo "## Installing PHP and other needed stuff";
|
||||
PACKAGES="httpd MariaDB-server git unzip php56u php56u-mysqlnd php56u-bcmath php56u-cli php56u-common php56u-embedded php56u-gd php56u-mbstring php56u-mcrypt php56u-ldap"
|
||||
|
||||
for p in $PACKAGES;do
|
||||
if isinstalled $p;then
|
||||
echo " ##" $p "Installed"
|
||||
if isinstalled "$p"; then
|
||||
echo " ## $p already installed"
|
||||
else
|
||||
echo -n " ##" $p "Installing... "
|
||||
yum -y install $p >> /var/log/snipeit-install.log 2>&1
|
||||
echo -n " ## installing $p ... "
|
||||
log "yum -y install $p"
|
||||
echo "";
|
||||
fi
|
||||
done;
|
||||
|
||||
echo -e "\n## Downloading Snipe-IT from github and putting it in the web directory.";
|
||||
|
||||
wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file >> /var/log/snipeit-install.log 2>&1
|
||||
log "wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file"
|
||||
unzip -qo $tmp/$file -d $tmp/
|
||||
cp -R $tmp/$fileName $webdir/$name
|
||||
|
||||
@@ -347,21 +360,23 @@ case $distro in
|
||||
echo "## Creating the new virtual host in Apache.";
|
||||
apachefile=/etc/httpd/conf.d/$name.conf
|
||||
|
||||
echo >> $apachefile ""
|
||||
echo >> $apachefile ""
|
||||
echo >> $apachefile ""
|
||||
echo >> $apachefile "<VirtualHost *:80>"
|
||||
echo >> $apachefile "ServerAdmin webmaster@localhost"
|
||||
echo >> $apachefile " <Directory $webdir/$name/public>"
|
||||
echo >> $apachefile " Allow From All"
|
||||
echo >> $apachefile " AllowOverride All"
|
||||
echo >> $apachefile " Options +Indexes"
|
||||
echo >> $apachefile " </Directory>"
|
||||
echo >> $apachefile " DocumentRoot $webdir/$name/public"
|
||||
echo >> $apachefile " ServerName $fqdn"
|
||||
echo >> $apachefile " ErrorLog /var/log/httpd/snipeIT.error.log"
|
||||
echo >> $apachefile " CustomLog /var/log/access.log combined"
|
||||
echo >> $apachefile "</VirtualHost>"
|
||||
{
|
||||
echo ""
|
||||
echo ""
|
||||
echo ""
|
||||
echo "<VirtualHost *:80>"
|
||||
echo "ServerAdmin webmaster@localhost"
|
||||
echo " <Directory $webdir/$name/public>"
|
||||
echo " Allow From All"
|
||||
echo " AllowOverride All"
|
||||
echo " Options +Indexes"
|
||||
echo " </Directory>"
|
||||
echo " DocumentRoot $webdir/$name/public"
|
||||
echo " ServerName $fqdn"
|
||||
echo " ErrorLog /var/log/httpd/snipeIT.error.log"
|
||||
echo " CustomLog /var/log/access.log combined"
|
||||
echo "</VirtualHost>"
|
||||
} >> "$apachefile"
|
||||
|
||||
echo "## Setting up hosts file.";
|
||||
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
||||
@@ -391,10 +406,8 @@ case $distro in
|
||||
curl -sS https://getcomposer.org/installer | php
|
||||
php composer.phar install --no-dev --prefer-source
|
||||
|
||||
# Change permissions on directories
|
||||
sudo chmod -R 755 $webdir/$name/storage
|
||||
sudo chmod -R 755 $webdir/$name/public/uploads
|
||||
sudo chown -R apache:apache $webdir/$name
|
||||
perms
|
||||
chown -R apache:apache $webdir/$name
|
||||
|
||||
/sbin/service iptables status >/dev/null 2>&1
|
||||
if [ $? = 0 ]; then
|
||||
@@ -415,29 +428,29 @@ case $distro in
|
||||
|
||||
#Allow us to get the mysql engine
|
||||
echo -e "\n## Add IUS, epel-release and mariaDB repos.";
|
||||
yum -y install wget epel-release >> /var/log/snipeit-install.log 2>&1
|
||||
wget -P $tmp/ https://centos7.iuscommunity.org/ius-release.rpm >> /var/log/snipeit-install.log 2>&1
|
||||
rpm -Uvh $tmp/ius-release*.rpm >> /var/log/snipeit-install.log 2>&1
|
||||
log "yum -y install wget epel-release"
|
||||
log "wget -P $tmp/ https://centos7.iuscommunity.org/ius-release.rpm"
|
||||
log "rpm -Uvh $tmp/ius-release*.rpm"
|
||||
|
||||
#Install PHP and other needed stuff.
|
||||
echo "## Installing PHP and other needed stuff";
|
||||
PACKAGES="httpd mariadb-server git unzip php56u php56u-mysqlnd php56u-bcmath php56u-cli php56u-common php56u-embedded php56u-gd php56u-mbstring php56u-mcrypt php56u-ldap"
|
||||
|
||||
for p in $PACKAGES;do
|
||||
if isinstalled $p;then
|
||||
echo " ##" $p "Installed"
|
||||
if isinstalled "$p"; then
|
||||
echo " ## $p already installed"
|
||||
else
|
||||
echo -n " ##" $p "Installing... "
|
||||
yum -y install $p >> /var/log/snipeit-install.log 2>&1
|
||||
echo -n " ## installing $p ... "
|
||||
log "yum -y install $p"
|
||||
echo "";
|
||||
fi
|
||||
done;
|
||||
|
||||
echo -e "\n## Downloading Snipe-IT from github and put it in the web directory.";
|
||||
|
||||
wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file >> /var/log/snipeit-install.log 2>&1
|
||||
unzip -qo $tmp/$file -d $tmp/
|
||||
cp -R $tmp/$fileName $webdir/$name
|
||||
log "wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file"
|
||||
log "unzip -qo $tmp/$file -d $tmp/"
|
||||
log "cp -R $tmp/$fileName $webdir/$name"
|
||||
|
||||
# Make mariaDB start on boot and restart the daemon
|
||||
echo "## Starting the mariaDB server.";
|
||||
@@ -451,30 +464,32 @@ case $distro in
|
||||
|
||||
echo "## Creating MySQL Database/User."
|
||||
echo "## Please Input your MySQL/MariaDB root password "
|
||||
mysql -u root -p < $dbsetup
|
||||
mysql -u root -p < "$dbsetup"
|
||||
|
||||
##TODO make sure the apachefile doesnt exist isnt already in there
|
||||
|
||||
#Create the new virtual host in Apache and enable rewrite
|
||||
apachefile=/etc/httpd/conf.d/$name.conf
|
||||
apachefile="/etc/httpd/conf.d/$name.conf"
|
||||
|
||||
echo "## Creating the new virtual host in Apache.";
|
||||
echo >> $apachefile ""
|
||||
echo >> $apachefile ""
|
||||
echo >> $apachefile "LoadModule rewrite_module modules/mod_rewrite.so"
|
||||
echo >> $apachefile ""
|
||||
echo >> $apachefile "<VirtualHost *:80>"
|
||||
echo >> $apachefile "ServerAdmin webmaster@localhost"
|
||||
echo >> $apachefile " <Directory $webdir/$name/public>"
|
||||
echo >> $apachefile " Allow From All"
|
||||
echo >> $apachefile " AllowOverride All"
|
||||
echo >> $apachefile " Options +Indexes"
|
||||
echo >> $apachefile " </Directory>"
|
||||
echo >> $apachefile " DocumentRoot $webdir/$name/public"
|
||||
echo >> $apachefile " ServerName $fqdn"
|
||||
echo >> $apachefile " ErrorLog /var/log/httpd/snipeIT.error.log"
|
||||
echo >> $apachefile " CustomLog /var/log/access.log combined"
|
||||
echo >> $apachefile "</VirtualHost>"
|
||||
{
|
||||
echo "## Creating the new virtual host in Apache.";
|
||||
echo ""
|
||||
echo ""
|
||||
echo "LoadModule rewrite_module modules/mod_rewrite.so"
|
||||
echo ""
|
||||
echo "<VirtualHost *:80>"
|
||||
echo "ServerAdmin webmaster@localhost"
|
||||
echo " <Directory $webdir/$name/public>"
|
||||
echo " Allow From All"
|
||||
echo " AllowOverride All"
|
||||
echo " Options +Indexes"
|
||||
echo " </Directory>"
|
||||
echo " DocumentRoot $webdir/$name/public"
|
||||
echo " ServerName $fqdn"
|
||||
echo " ErrorLog /var/log/httpd/snipeIT.error.log"
|
||||
echo " CustomLog /var/log/access.log combined"
|
||||
echo "</VirtualHost>"
|
||||
} >> "$apachefile"
|
||||
|
||||
##TODO make sure this isnt already in there
|
||||
echo "## Setting up hosts file.";
|
||||
@@ -509,20 +524,18 @@ case $distro in
|
||||
curl -sS https://getcomposer.org/installer | php
|
||||
php composer.phar install --no-dev --prefer-source
|
||||
|
||||
sudo chmod -R 755 $webdir/$name/storage
|
||||
sudo chmod -R 755 $webdir/$name/storage/private_uploads
|
||||
sudo chmod -R 755 $webdir/$name/public/uploads
|
||||
sudo chown -R apache:apache $webdir/$name
|
||||
perms
|
||||
chown -R apache:apache $webdir/$name
|
||||
# Make SeLinux happy
|
||||
sudo chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
||||
chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
||||
|
||||
#Check if SELinux is enforcing
|
||||
if [ $(getenforce) == "Enforcing" ]; then
|
||||
if [ "$(getenforce)" == "Enforcing" ]; then
|
||||
#Add SELinux and firewall exception/rules.
|
||||
#Required for ldap integration
|
||||
setsebool -P httpd_can_connect_ldap on
|
||||
#Sets SELinux context type so that scripts running in the web server process are allowed read/write access
|
||||
sudo chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
||||
chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
||||
fi
|
||||
|
||||
systemctl restart httpd.service
|
||||
@@ -542,6 +555,6 @@ echo ""
|
||||
echo "* Cleaning up..."
|
||||
rm -f snipeit.sh
|
||||
rm -f install.sh
|
||||
rm -rf $tmp/
|
||||
rm -rf ${tmp:?}
|
||||
echo "* Finished!"
|
||||
sleep 1
|
||||
|
||||
Reference in New Issue
Block a user