mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-27 12:14:39 +00:00
Do filtering and pagination of domains server-side.
This commit is contained in:
parent
b6ed658cbd
commit
bcb2b06124
@ -144,53 +144,11 @@
|
|||||||
<th>Type</th>
|
<th>Type</th>
|
||||||
<th>Serial</th>
|
<th>Serial</th>
|
||||||
<th>Master</th>
|
<th>Master</th>
|
||||||
<th>Action</th>
|
<th {% if current_user.role.name !='Administrator' %}width="6%"{% else %}width="20%"{% endif %}>Action</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for domain in domains %}
|
<!-- Content loaded via AJAX. -->
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<a href="{{ url_for('domain', domain_name=domain.name) }}"><strong>{{ domain.name }}</strong></a>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{% if domain.dnssec %}
|
|
||||||
<button type="button" class="btn btn-flat dnssec btn-success button_dnssec" id="{{ domain.name }}" style="width:100%;">
|
|
||||||
<i class="fa fa-lock"></i> Enabled
|
|
||||||
</button>
|
|
||||||
{% else %}
|
|
||||||
<button type="button" class="btn btn-flat dnssec button_dnssec" id="{{ domain.name }}" style="width:100%;">
|
|
||||||
<i class="fa fa-unlock-alt"></i> Disabled
|
|
||||||
</button>
|
|
||||||
{% endif %}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{{ domain.type }}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{% if domain.serial == 0 %}{{ domain.notified_serial }}{% else %}{{domain.serial}}{% endif %}
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
{% if domain.master == '[]'%}N/A {% else %}{{ domain.master|display_master_name }}{% endif %}
|
|
||||||
</td>
|
|
||||||
{% if current_user.role.name !='Administrator' %}
|
|
||||||
<td width="6%">
|
|
||||||
<button type="button" class="btn btn-flat btn-success" onclick="window.location.href='{{ url_for('domain', domain_name=domain.name) }}'">
|
|
||||||
Manage <i class="fa fa-cog"></i>
|
|
||||||
</button>
|
|
||||||
</td>
|
|
||||||
{% else %}
|
|
||||||
<td width="20%">
|
|
||||||
<button type="button" class="btn btn-flat btn-success" onclick="window.location.href='{{ url_for('domain', domain_name=domain.name) }}'">
|
|
||||||
Manage <i class="fa fa-cog"></i>
|
|
||||||
</button>
|
|
||||||
<button type="button" class="btn btn-flat btn-danger" onclick="window.location.href='{{ url_for('domain_management', domain_name=domain.name) }}'">
|
|
||||||
Admin <i class="fa fa-cog"></i>
|
|
||||||
</button>
|
|
||||||
</td>
|
|
||||||
{% endif %}
|
|
||||||
</tr>
|
|
||||||
{% endfor %}
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
@ -214,13 +172,16 @@
|
|||||||
"ordering" : false,
|
"ordering" : false,
|
||||||
"info" : false,
|
"info" : false,
|
||||||
"autoWidth" : false
|
"autoWidth" : false
|
||||||
});
|
});
|
||||||
// set up domain list
|
// set up domain list
|
||||||
$("#tbl_domain_list").DataTable({
|
$("#tbl_domain_list").DataTable({
|
||||||
"paging" : true,
|
"paging" : true,
|
||||||
"lengthChange" : true,
|
"lengthChange" : true,
|
||||||
"searching" : true,
|
"searching" : true,
|
||||||
"ordering" : true,
|
"ordering" : true,
|
||||||
|
"processing" : true,
|
||||||
|
"serverSide" : true,
|
||||||
|
"ajax" : "{{ url_for('dashboard_domains') }}",
|
||||||
"info" : false,
|
"info" : false,
|
||||||
"autoWidth" : false,
|
"autoWidth" : false,
|
||||||
{% if default_domain_table_size_setting in ['10','25','50','100'] %}
|
{% if default_domain_table_size_setting in ['10','25','50','100'] %}
|
||||||
|
68
app/views.py
68
app/views.py
@ -271,10 +271,6 @@ def logout():
|
|||||||
@login_required
|
@login_required
|
||||||
def dashboard():
|
def dashboard():
|
||||||
d = Domain().update()
|
d = Domain().update()
|
||||||
if current_user.role.name == 'Administrator':
|
|
||||||
domains = Domain.query.all()
|
|
||||||
else:
|
|
||||||
domains = User(id=current_user.id).get_domain()
|
|
||||||
|
|
||||||
# stats for dashboard
|
# stats for dashboard
|
||||||
domain_count = Domain.query.count()
|
domain_count = Domain.query.count()
|
||||||
@ -287,7 +283,69 @@ def dashboard():
|
|||||||
uptime = filter(lambda uptime: uptime['name'] == 'uptime', statistics)[0]['value']
|
uptime = filter(lambda uptime: uptime['name'] == 'uptime', statistics)[0]['value']
|
||||||
else:
|
else:
|
||||||
uptime = 0
|
uptime = 0
|
||||||
return render_template('dashboard.html', domains=domains, domain_count=domain_count, users=users, history_number=history_number, uptime=uptime, histories=history)
|
return render_template('dashboard.html', domain_count=domain_count, users=users, history_number=history_number, uptime=uptime, histories=history)
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/dashboard-domains', methods=['GET'])
|
||||||
|
@login_required
|
||||||
|
def dashboard_domains():
|
||||||
|
if current_user.role.name == 'Administrator':
|
||||||
|
domains = Domain.query
|
||||||
|
else:
|
||||||
|
domains = User(id=current_user.id).get_domain()
|
||||||
|
|
||||||
|
template = app.jinja_env.get_template("dashboard_domain.html")
|
||||||
|
render = template.make_module(vars={"current_user": current_user})
|
||||||
|
|
||||||
|
columns = [Domain.name, Domain.dnssec, Domain.type, Domain.serial, Domain.master]
|
||||||
|
# History.created_on.desc()
|
||||||
|
order_by = []
|
||||||
|
for i in range(len(columns)):
|
||||||
|
column_index = request.args.get("order[%d][column]" % i)
|
||||||
|
sort_direction = request.args.get("order[%d][dir]" % i)
|
||||||
|
if column_index is None:
|
||||||
|
break
|
||||||
|
if sort_direction != "asc" and sort_direction != "desc":
|
||||||
|
sort_direction = "asc"
|
||||||
|
|
||||||
|
column = columns[int(column_index)]
|
||||||
|
order_by.append(getattr(column, sort_direction)())
|
||||||
|
|
||||||
|
if order_by:
|
||||||
|
domains = domains.order_by(*order_by)
|
||||||
|
|
||||||
|
total_count = domains.count()
|
||||||
|
|
||||||
|
search = request.args.get("search[value]")
|
||||||
|
if search:
|
||||||
|
start = "" if search.startswith("^") else "%"
|
||||||
|
end = "" if search.endswith("$") else "%"
|
||||||
|
domains = domains.filter(Domain.name.ilike(start + search.strip("^$") + end))
|
||||||
|
|
||||||
|
filtered_count = domains.count()
|
||||||
|
|
||||||
|
start = int(request.args.get("start", 0))
|
||||||
|
length = min(int(request.args.get("length", 0)), 100)
|
||||||
|
domains = domains[start:start + length]
|
||||||
|
|
||||||
|
data = []
|
||||||
|
for domain in domains:
|
||||||
|
data.append([
|
||||||
|
render.name(domain),
|
||||||
|
render.dnssec(domain),
|
||||||
|
render.type(domain),
|
||||||
|
render.serial(domain),
|
||||||
|
render.master(domain),
|
||||||
|
render.actions(domain),
|
||||||
|
])
|
||||||
|
|
||||||
|
response_data = {
|
||||||
|
"draw": int(request.args.get("draw", 0)),
|
||||||
|
"recordsTotal": total_count,
|
||||||
|
"recordsFiltered": filtered_count,
|
||||||
|
"data": data,
|
||||||
|
}
|
||||||
|
return jsonify(response_data)
|
||||||
|
|
||||||
|
|
||||||
@app.route('/domain/<path:domain_name>', methods=['GET', 'POST'])
|
@app.route('/domain/<path:domain_name>', methods=['GET', 'POST'])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user