mirror of https://github.com/jumpserver/jumpserver
372 lines
16 KiB
HTML
372 lines
16 KiB
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block custom_head_css_js %}
|
|
<link href="{% static "css/plugins/select2/select2.min.css" %}" rel="stylesheet">
|
|
<script src="{% static "js/plugins/select2/select2.full.min.js" %}"></script>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="ibox float-e-margins">
|
|
<div class="panel-options">
|
|
<ul class="nav nav-tabs">
|
|
<li>
|
|
<a href="{% url 'assets:system-user-detail' pk=system_user.id %}" class="text-center"><i class="fa fa-laptop"></i> {% trans 'Detail' %} </a>
|
|
</li>
|
|
<li class="active"><a href="{% url 'assets:system-user-asset' pk=system_user.id %}" class="text-center">
|
|
<i class="fa fa-bar-chart-o"></i> {% trans 'Associate assets and asset groups' %}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="tab-content">
|
|
<div class="col-sm-7" style="padding-left: 0;">
|
|
<div class="ibox float-e-margins">
|
|
<div class="ibox-title">
|
|
<span style="float: left">{% trans 'Assets attached of ' %} <b>{{ system_user.name }} </b><span class="badge">{{ paginator.count }}</span></span>
|
|
<div class="ibox-tools">
|
|
<a class="collapse-link">
|
|
<i class="fa fa-chevron-up"></i>
|
|
</a>
|
|
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
|
|
<i class="fa fa-wrench"></i>
|
|
</a>
|
|
<ul class="dropdown-menu dropdown-user">
|
|
</ul>
|
|
<a class="close-link">
|
|
<i class="fa fa-times"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<table class="table table-hover" id="system_user_list">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans 'Hostname' %}</th>
|
|
<th>{% trans 'IP' %}</th>
|
|
<th>{% trans 'Port' %}</th>
|
|
<th>{% trans 'Reachable' %}</th>
|
|
<th>{% trans 'Action' %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{# {% for asset in page_obj %}#}
|
|
{# <tr>#}
|
|
{# <td>{{ asset.hostname }}</td>#}
|
|
{# <td>{{ asset.ip }}</td>#}
|
|
{# <td>{{ asset.port }}</td>#}
|
|
{# <td>#}
|
|
{# <i class="fa fa-check text-navy"></i>#}
|
|
{# </td>#}
|
|
{# <td>#}
|
|
{# <button class="btn btn-danger pull-right btn-xs {% if asset.is_inherit_from_asset_groups %} disabled {% endif %}" type="button"><i class="fa fa-minus"></i></button>#}
|
|
{# </td>#}
|
|
{# </tr>#}
|
|
{# {% endfor %}#}
|
|
</tbody>
|
|
</table>
|
|
{# <div class="row">#}
|
|
{# {% include '_pagination.html' %}#}
|
|
{# </div>#}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-5" style="padding-left: 0;padding-right: 0">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-info-circle"></i> {% trans 'Attach to assets ' %}
|
|
</div>
|
|
<div class="panel-body">
|
|
<table class="table">
|
|
<tbody>
|
|
<form>
|
|
<tr class="no-borders-tr">
|
|
<td colspan="2">
|
|
<select data-placeholder="{% trans 'Select asset' %}" class="select2" style="width: 100%" multiple="" tabindex="4">
|
|
{% for asset in assets_remain %}
|
|
<option value="{{ asset.id }}">{{ asset.ip}}:{{ asset.port }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr class="no-borders-tr">
|
|
<td colspan="2">
|
|
<button type="button" class="btn btn-primary btn-sm btn-add-asset2system-user">{% trans 'Attach Asset' %}</button>
|
|
</td>
|
|
</tr>
|
|
</form>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel panel-info">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-info-circle"></i> {% trans 'Attach to asset groups' %}
|
|
</div>
|
|
<div class="panel-body">
|
|
<table class="table group_edit">
|
|
<tbody>
|
|
<form>
|
|
<tr>
|
|
<td colspan="2" class="no-borders">
|
|
<select data-placeholder="{% trans 'Add asset group' %}" class="select2" style="width: 100%" multiple="" tabindex="4">
|
|
{% for asset_group in asset_groups_remain %}
|
|
<option value="{{ asset_group.id }}">{{ asset_group.name }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" class="no-borders">
|
|
<button type="button" class="btn btn-info btn-sm" id="btn_add_user_group">{% trans 'Attach AssetGroup' %}</button>
|
|
</td>
|
|
</tr>
|
|
</form>
|
|
|
|
{% for asset_group in asset_groups %}
|
|
<tr>
|
|
<td ><b class="bdg_asset_groups" data-gid={{ asset_group.id }}>{{ asset_group.name }}</b></td>
|
|
<td>
|
|
<button class="btn btn-danger pull-right btn-xs btn-leave-system_user" type="button"><i class="fa fa-minus"></i></button>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
{% block custom_foot_js %}
|
|
<script>
|
|
jumpserver.assets_selected = {};
|
|
jumpserver.asset_groups_selected = {};
|
|
Array.prototype.remove = function(val) {
|
|
var index = this.indexOf(val);
|
|
if (index > -1) {
|
|
this.splice(index, 1);
|
|
}
|
|
};
|
|
Array.prototype.unique = function(){
|
|
var res = [];
|
|
var json = {};
|
|
for(var i = 0; i < this.length; i++){
|
|
if(!json[this[i]]){
|
|
res.push(this[i]);
|
|
json[this[i]] = 1;
|
|
}
|
|
}
|
|
return res;
|
|
};
|
|
function objectDelete(obj, name, url, data) {
|
|
function doDelete() {
|
|
var body = data;
|
|
var success = function() {
|
|
swal('Deleted!', "[ "+name+"]"+" has been deleted ", "success");
|
|
$(obj).parent().parent().remove();
|
|
};
|
|
var fail = function() {
|
|
swal("Failed", "Delete"+"[ "+name+" ]"+"failed", "error");
|
|
};
|
|
APIUpdateAttr({
|
|
url: url,
|
|
body: JSON.stringify(body),
|
|
method: 'PATCH',
|
|
success: success,
|
|
error: fail
|
|
});
|
|
}
|
|
swal({
|
|
title: 'Are you sure delete ?',
|
|
text: " [" + name + "] ",
|
|
type: "warning",
|
|
showCancelButton: true,
|
|
cancelButtonText: 'Cancel',
|
|
confirmButtonColor: "#DD6B55",
|
|
confirmButtonText: 'Confirm',
|
|
closeOnConfirm: false
|
|
}, function () {
|
|
doDelete()
|
|
});
|
|
}
|
|
function updateSystemUserAssetGroup(asset_groups) {
|
|
var the_url = "{% url 'api-assets:systemuser-update-assetgroups' pk=system_user.id %}";
|
|
var body = {
|
|
asset_groups: Object.assign([], asset_groups)
|
|
};
|
|
var success = function(data) {
|
|
$('.select2-selection__rendered').empty();
|
|
$('#groups_selected').val('');
|
|
$.map(jumpserver.asset_groups_selected, function(asset_groups, index) {
|
|
$('#opt_' + index).remove();
|
|
$('.system-user-table tbody').append(
|
|
'<tr>' +
|
|
'<td><b class="bdg_asset_groups" data-sid="' + index + '">' + asset_groups + '</b></td>' +
|
|
'<td><button class="btn btn-danger btn-xs pull-right btn-leave-system_user" type="button"><i class="fa fa-minus"></i></button></td>' +
|
|
'</tr>'
|
|
)
|
|
});
|
|
jumpserver.assets_selected = {};
|
|
};
|
|
APIUpdateAttr({
|
|
url: the_url,
|
|
body: JSON.stringify(body),
|
|
success: success
|
|
});
|
|
}
|
|
$(document).ready(function () {
|
|
$('.select2').select2()
|
|
.on("select2:select", function (evt) {
|
|
var data = evt.params.data;
|
|
jumpserver.assets_selected[data.id] = data.text;
|
|
jumpserver.asset_groups_selected[data.id] = data.text;
|
|
})
|
|
.on('select2:unselect', function(evt) {
|
|
var data = evt.params.data;
|
|
delete jumpserver.assets_selected[data.id];
|
|
delete jumpserver.asset_groups_selected[data.id];
|
|
});
|
|
var options = {
|
|
ele: $('#system_user_list'),
|
|
buttons: [],
|
|
order: [],
|
|
columnDefs: [
|
|
{targets: 0, createdCell: function (td, cellData, rowData) {
|
|
var detail_btn = '<a href="{% url "assets:asset-detail" pk=99991937 %}" data-aid="'+rowData.id+'">' + cellData + '</a>';
|
|
$(td).html(detail_btn.replace('99991937', rowData.id));
|
|
}},
|
|
{targets: 3, createdCell: function (td, cellData) {
|
|
if (!cellData) {
|
|
$(td).html('<i class="fa fa-times text-danger"></i>')
|
|
} else {
|
|
$(td).html('<i class="fa fa-check text-navy"></i>')
|
|
}
|
|
}},
|
|
{targets: 4, createdCell: function (td, cellData, rowData) {
|
|
var update_btn = '<a href="{% url "assets:asset-update" pk=99991937 %}" class="btn btn-xs btn-info">{% trans "Update" %}</a>'.replace('99991937', rowData.id);
|
|
var del_btn = '<a class="btn btn-xs btn-danger m-l-xs btn_asset_delete" data-aid="99991937">{% trans "Delete" %}</a>'.replace('99991937', rowData.id);
|
|
$(td).html(update_btn + del_btn)
|
|
}}
|
|
],
|
|
ajax_url: '{% url "api-assets:asset-list" %}?system_user_id={{ system_user.id }}',
|
|
columns: [{data: "hostname" }, {data: "ip" }, {data: "port" }, {data: function () { return ""; } }, {data: "id"}],
|
|
op_html: $('#actions').html()
|
|
};
|
|
jumpserver.initDataTable(options);
|
|
})
|
|
|
|
.on('click', '.btn-add-asset2system-user', function () {
|
|
if (Object.keys(jumpserver.assets_selected).length === 0) {
|
|
return false;
|
|
}
|
|
var $data_table = $("#system_user_list").DataTable();
|
|
var assets = [];
|
|
$.ajax({
|
|
url: '{% url "api-assets:asset-list" %}?system_user_id={{ system_user.id }}',
|
|
method: 'GET',
|
|
dataType: 'json',
|
|
success: function (result) {
|
|
for(var i in result){
|
|
if (!isNaN(parseInt(result[i]['id']))) {
|
|
assets.push(parseInt(result[i]['id']))
|
|
}
|
|
}
|
|
$.map(jumpserver.assets_selected, function(value, index) {
|
|
assets.push(parseInt(index));
|
|
});
|
|
assets.unique();
|
|
var the_url = "{% url 'api-assets:systemuser-update-assets' pk=system_user.id %}";
|
|
var body = {"assets": assets};
|
|
APIUpdateAttr({
|
|
url: the_url,
|
|
body: JSON.stringify(body),
|
|
method: 'PATCH'
|
|
});
|
|
$data_table.ajax.reload();
|
|
}
|
|
});
|
|
})
|
|
|
|
.on('click', '.btn_asset_delete', function () {
|
|
var $this = $(this);
|
|
var the_url = "{% url 'api-assets:systemuser-update-assets' pk=system_user.id %}";
|
|
var name = $(this).closest("tr").find(":nth-child(1) > a").html();
|
|
var $data_table = $("#system_user_list").DataTable();
|
|
var assets = [];
|
|
$('#system_user_list > tbody > tr').map(function () {
|
|
assets.push(parseInt($(this).closest("tr").find(":nth-child(1) > a").attr("data-aid")))
|
|
});
|
|
var delete_asset_id = $(this).data('aid');
|
|
assets.remove(delete_asset_id);
|
|
assets.unique();
|
|
var data = {"assets": assets};
|
|
objectDelete($this, name, the_url, data);
|
|
$data_table.ajax.reload();
|
|
})
|
|
|
|
.on('click', '#btn_add_user_group', function () {
|
|
jumpserver.assets_selected = {};
|
|
if (Object.keys(jumpserver.asset_groups_selected).length === 0) {
|
|
return false;
|
|
}
|
|
asset_groups = [];
|
|
$.ajax({
|
|
url: '{% url "api-assets:systemuser-update-assetgroups" pk=system_user.id %}',
|
|
method: 'GET',
|
|
dataType: 'json',
|
|
success: function (result) {
|
|
for (var i in result['asset_groups']) {
|
|
if (!isNaN(result['asset_groups'][i])) {
|
|
asset_groups.push(parseInt(result['asset_groups'][i]));
|
|
}
|
|
}
|
|
$.map(jumpserver.asset_groups_selected, function(value, index) {
|
|
asset_groups.push(parseInt(index));
|
|
});
|
|
asset_groups.unique();
|
|
console.log(asset_groups);
|
|
var the_url = '{% url "api-assets:systemuser-update-assetgroups" pk=system_user.id %}';
|
|
var body = {"asset_groups": asset_groups};
|
|
APIUpdateAttr({
|
|
url: the_url,
|
|
body: JSON.stringify(body),
|
|
method: 'PATCH'
|
|
});
|
|
{# TODO: reload the table #}
|
|
{# window.location.href="{% url 'assets:system-user-asset' pk=system_user.id %}"#}
|
|
}
|
|
});
|
|
})
|
|
|
|
.on('click', '.btn-leave-system_user', function () {
|
|
var $this = $(this);
|
|
var $tr = $this.closest('tr');
|
|
var $badge = $tr.find('.bdg_asset_groups');
|
|
var sid = $badge.data('gid');
|
|
var name = $badge.html() || $badge.text();
|
|
$('system-user-table').append(
|
|
'<option value="' + sid + '" id="opt_' + sid + '">' + name + '</option>'
|
|
);
|
|
$tr.remove();
|
|
var asset_groups = $('.bdg_asset_groups').map(function () {
|
|
return $(this).data('gid');
|
|
}).get();
|
|
updateSystemUserAssetGroup(asset_groups);
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|
|
{% endblock %}
|