@extends('admin.layouts')
@section('css')
	<link href="/assets/global/vendor/bootstrap-table/bootstrap-table.min.css" type="text/css" rel="stylesheet">
@endsection
@section('content')
	<div class="page-content container-fluid">
		<div class="panel">
			<div class="panel-heading">
				<h2 class="panel-title">触发记录</h2>
				<div class="panel-actions">
					<a href="javascript:clearLog();" class="btn btn-outline-primary">
						<i class="icon wb-rubber" aria-hidden="true"></i>清空记录
					</a>
				</div>
			</div>
			<div class="panel-body">
				<div class="form-row">
					<div class="form-group col-xxl-1 col-lg-2 col-md-1 col-sm-4">
						<input type="number" class="form-control" name="uid" value="{{Request::get('uid')}}" id="uid" placeholder="用户ID"/>
					</div>
					<div class="form-group col-xxl-2 col-lg-3 col-md-3 col-sm-4">
						<input type="text" class="form-control" id="email" name="email"
								value="{{Request::get('email')}}" placeholder="用户名"/>
					</div>
					<div class="form-group col-xxl-1 col-lg-3 col-md-3 col-4">
						<select class="form-control" id="node_id" name="node_id" onChange="Search()">
							<option value="" @if(Request::get('node_id') == '') selected @endif>节点</option>
							@foreach($nodeList as $node)
								<option value="{{$node->id}}" @if(Request::get('node_id') == $node->id) selected @endif>{{$node->id . ' - ' . $node->name}}</option>
							@endforeach
						</select>
					</div>
					<div class="form-group col-xxl-1 col-lg-3 col-md-3 col-4">
						<select class="form-control" id="rule_id" name="rule_id" onChange="Search()">
							<option value="" @if(Request::get('rule_id') == '') selected @endif>规则</option>
							@foreach($ruleList as $rule)
								<option value="{{$rule->id}}" @if(Request::get('rule_id') == $rule->id) selected @endif>{{$rule->name}}</option>
							@endforeach
						</select>
					</div>
					<div class="form-group col-xxl-1 col-lg-3 col-md-3 col-4 btn-group">
						<button class="btn btn-primary" onclick="Search()">搜 索</button>
						<a href="{{route('rule.log')}}" class="btn btn-danger">重 置</a>
					</div>
				</div>
				<table class="text-md-center" data-toggle="table" data-mobile-responsive="true">
					<thead class="thead-default">
					<tr>
						<th> #</th>
						<th> 用户ID</th>
						<th> 用户名</th>
						<th> 节点</th>
						<th> 触发规则</th>
						<th> 触发原因</th>
						<th> 触发时间</th>
					</tr>
					</thead>
					<tbody>
					@foreach($ruleLogs as $ruleLog)
						<tr>
							<td> {{$ruleLog->id}} </td>
							<td> {{empty($ruleLog->user) ? '【账号已删除】' : $ruleLog->user->id}} </td>
							<td> {{empty($ruleLog->user) ? '【账号已删除】' : $ruleLog->user->username}} </td>
							<td> {{empty($ruleLog->node) ? '【节点已删除】' : '【节点ID:' . $ruleLog->node_id . '】' . $ruleLog->node->name}} </td>
							<td> {{$ruleLog->rule_id ? '[阻断] ' . ($ruleLog->rule ? $ruleLog->rule->name : '【规则已删除】') : '[允许] 访问非规则允许内容'}} </td>
							<td> {{$ruleLog->reason}} </td>
							<td> {{$ruleLog->created_at}} </td>
						</tr>
					@endforeach
					</tbody>
				</table>
			</div>
			<div class="panel-footer">
				<div class="row">
					<div class="col-sm-4">
						共 <code>{{$ruleLogs->total()}}</code> 条记录
					</div>
					<div class="col-sm-8">
						<nav class="Page navigation float-right">
							{{$ruleLogs->links()}}
						</nav>
					</div>
				</div>
			</div>
		</div>
	</div>
@endsection
@section('script')
	<script src="/assets/global/vendor/bootstrap-table/bootstrap-table.min.js" type="text/javascript"></script>
	<script src="/assets/global/vendor/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js" type="text/javascript"></script>
	<script type="text/javascript">
		// 搜索
		function Search() {
			window.location.href = '{{route('rule.log')}}?uid=' + $("#uid").val() + '&username=' + $("#username").val() + '&node_id=' + $("#node_id option:selected").val() + '&rule_id=' + $("#rule_id option:selected").val();
		}

		// 清除所有记录
		function clearLog() {
			swal.fire({
				title: '警告',
				text: '确定清空所有记录吗?',
				type: 'warning',
				showCancelButton: true,
				cancelButtonText: '{{trans('home.ticket_close')}}',
				confirmButtonText: '{{trans('home.ticket_confirm')}}',
			}).then((result) => {
				if (result.value) {
					$.post("{{route('rule.clear')}}", {_token: '{{csrf_token()}}'}, function (ret) {
						if (ret.status === 'success') {
							swal.fire({title: ret.message, type: 'success', timer: 1000, showConfirmButton: false})
								.then(() => window.location.reload())
						} else {
							swal.fire({title: ret.message, type: "error"});
						}
					});
				}
			});
		}
	</script>
@endsection