123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- # -*- coding:utf-8 -*-
- # Copyright 2017 Xiaomi, Inc.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- __author__ = 'Ulric Qin'
- from flask import jsonify, request, render_template, g, make_response
- from rrd import app
- from rrd.model.portal.host_group import HostGroup
- from rrd.model.portal.group_host import GroupHost
- from rrd.model.portal.grp_tpl import GrpTpl
- from rrd.model.portal.host import Host
- from rrd.model.portal.template import Template
- @app.route('/portal/group/<group_id>/hosts.txt')
- def group_hosts_export(group_id):
- group_id = int(group_id)
- group = HostGroup.read(where='id = %s', params=[group_id])
- if not group:
- return jsonify(msg='no such group %s' % group_id)
- vs, _ = Host.query(1, 10000000, '', '0', group_id)
- names = [v.hostname for v in vs]
- response = make_response('\n'.join(names))
- response.headers["content-type"] = "text/plain"
- return response
- @app.route('/portal/group/<group_id>/hosts')
- def group_hosts_list(group_id):
- g.xbox = request.args.get('xbox', '')
- group_id = int(group_id)
- group = HostGroup.read(where='id = %s', params=[group_id])
- if not group:
- return jsonify(msg='no such group %s' % group_id)
- page = int(request.args.get('p', 1))
- limit = int(request.args.get('limit', 10))
- query = request.args.get('q', '')
- maintaining = request.args.get('maintaining', '0')
- vs, total = Host.query(page, limit, query, maintaining, group_id)
- return render_template(
- 'portal/host/index.html',
- data={
- 'vs': vs,
- 'total': total,
- 'query': query,
- 'limit': limit,
- 'page': page,
- 'maintaining': maintaining,
- 'group': group,
- }
- )
- @app.route('/portal/host/remove', methods=['POST'])
- def host_remove_post():
- group_id = int(request.form['grp_id'].strip())
- host_ids = request.form['host_ids'].strip()
- GroupHost.unbind(group_id, host_ids)
- return jsonify(msg='')
- @app.route('/portal/host/maintain', methods=['POST'])
- def host_maintain_post():
- begin = int(request.form['begin'].strip())
- end = int(request.form['end'].strip())
- host_ids = request.form['host_ids'].strip()
- if begin <= 0 or end <= 0:
- return jsonify(msg='begin or end is invalid')
- return jsonify(msg=Host.maintain(begin, end, host_ids))
- # 取消maintain时间
- @app.route('/portal/host/reset', methods=['POST'])
- def host_reset_post():
- host_ids = request.form['host_ids'].strip()
- return jsonify(msg=Host.no_maintain(host_ids))
- @app.route('/portal/host/add')
- def host_add_get():
- group_id = request.args.get('group_id', '')
- if not group_id:
- return jsonify(msg='no group_id given')
- group_id = int(group_id)
- group = HostGroup.read('id = %s', [group_id])
- if not group:
- return jsonify(msg='no such group')
- return render_template('portal/host/add.html', group=group)
- @app.route('/portal/host/add', methods=['POST'])
- def host_add_post():
- group_id = request.form['group_id']
- if not group_id:
- return jsonify(msg='no group_id given')
- group_id = int(group_id)
- group = HostGroup.read('id = %s', [group_id])
- if not group:
- return jsonify(msg='no such group')
- hosts = request.form['hosts'].strip()
- if not hosts:
- return jsonify(msg='hosts is blank')
- host_arr = hosts.splitlines()
- safe_host_arr = [h.strip() for h in host_arr if h]
- if not safe_host_arr:
- return jsonify(msg='hosts is blank')
- success = []
- failure = []
- for h in safe_host_arr:
- msg = GroupHost.bind(group_id, h)
- if not msg:
- success.append('%s<br>' % h)
- else:
- failure.append('%s %s<br>' % (h, msg))
- data = '<div class="alert alert-danger" role="alert">failure:<hr>' + ''.join(
- failure) + '</div><div class="alert alert-success" role="alert">success:<hr>' + ''.join(success) + '</div>'
- return jsonify(msg='', data=data)
- # 展示某个机器bind的group
- @app.route('/portal/host/<host_id>/groups')
- def host_groups_get(host_id):
- host_id = int(host_id)
- h = Host.read('id = %s', params=[host_id])
- if not h:
- return jsonify(msg='no such host')
- group_ids = GroupHost.group_ids(h.id)
- groups = [HostGroup.read('id = %s', [group_id]) for group_id in group_ids]
- return render_template('portal/host/groups.html', groups=groups, host=h)
- @app.route('/portal/host/<host_id>/templates')
- def host_templates_get(host_id):
- host_id = int(host_id)
- h = Host.read('id = %s', params=[host_id])
- if not h:
- return jsonify(msg='no such host')
- group_ids = GroupHost.group_ids(h.id)
- templates = GrpTpl.tpl_set(group_ids)
- for v in templates:
- v.parent = Template.get(v.parent_id)
- return render_template('portal/host/templates.html', **locals())
- @app.route('/portal/host/unbind')
- def host_unbind_get():
- host_id = request.args.get('host_id', '').strip()
- if not host_id:
- return jsonify(msg='host_id is blank')
- group_id = request.args.get('group_id', '').strip()
- if not group_id:
- return jsonify(msg='group_id is blank')
- GroupHost.unbind(int(group_id), host_id)
- return jsonify(msg='')
|