2017-03-08 13:53:09 -05:00
|
|
|
from flask import render_template, abort, redirect, url_for, abort, flash, request, current_app, make_response, g
|
|
|
|
from flask_login import login_required, login_user, logout_user, current_user
|
|
|
|
from flask_sqlalchemy import get_debug_queries
|
|
|
|
|
2017-03-08 19:55:12 -05:00
|
|
|
from . import vmanager
|
2017-07-13 19:46:51 -04:00
|
|
|
from .forms import DeployForm, ActivateForm
|
2017-03-08 13:53:09 -05:00
|
|
|
from .. import db
|
|
|
|
from ..email import send_email
|
2017-07-15 00:13:57 -04:00
|
|
|
from ..models import User, Permission, Transaction, Deployment, Service, Region, Address, Domain, contact_proxmaster
|
2017-03-08 13:53:09 -05:00
|
|
|
from ..decorators import admin_required, permission_required
|
|
|
|
|
|
|
|
import base64
|
|
|
|
import string
|
|
|
|
import random
|
|
|
|
from datetime import datetime, timedelta, date, time
|
2017-07-15 00:13:57 -04:00
|
|
|
from dateutil.relativedelta import relativedelta
|
2017-06-01 18:27:17 -04:00
|
|
|
import ast
|
2017-03-08 13:53:09 -05:00
|
|
|
|
|
|
|
def randstr(n):
|
|
|
|
return ''.join(random.SystemRandom().choice(string.ascii_lowercase + string.digits) for _ in range(n))
|
|
|
|
|
2017-03-08 19:55:12 -05:00
|
|
|
#@vmanager.before_app_request
|
2017-03-08 13:53:09 -05:00
|
|
|
#def before_request():
|
|
|
|
# g.user = current_user
|
|
|
|
# print('current_user: %s, g.user: %s, leaving bef_req' % (current_user, g.user))
|
|
|
|
|
2017-03-08 19:55:12 -05:00
|
|
|
@vmanager.after_app_request
|
2017-03-08 13:53:09 -05:00
|
|
|
def after_request(response):
|
|
|
|
for query in get_debug_queries():
|
|
|
|
if query.duration >= current_app.config['SLOW_DB_QUERY_TIME']:
|
|
|
|
current_app.logger.warning('Slow query: %s\nParameters: %s\nDuration: %fs\nContext: %s\n' % (query.statement, query.parameters, query.duration, query.context))
|
|
|
|
return response
|
|
|
|
|
|
|
|
#APP STORE
|
2017-03-08 19:55:12 -05:00
|
|
|
@vmanager.route('/market/<int:group_id>', methods=['GET'])
|
2017-03-08 13:53:09 -05:00
|
|
|
@login_required
|
|
|
|
def market(group_id=0):
|
|
|
|
page = { 'title': 'Market' }
|
|
|
|
allproducts = Product.get_products()
|
|
|
|
allgroups = current_app.config['GROUPS']
|
|
|
|
|
|
|
|
if group_id == 0:
|
2017-03-08 19:55:12 -05:00
|
|
|
return render_template('vmanager/market.html', groups=allgroups, products=allproducts)
|
2017-03-08 13:53:09 -05:00
|
|
|
|
|
|
|
filtered_products = {}
|
|
|
|
for key, value in allproducts.items():
|
|
|
|
if value['group'] == group_id:
|
|
|
|
filtered_products[key] = value
|
|
|
|
|
|
|
|
if filtered_products == {}:
|
|
|
|
abort(404)
|
2017-03-08 19:55:12 -05:00
|
|
|
return render_template('vmanager/marketgroup.html', groupname=allgroups[group_id], products=filtered_products)
|
2017-03-08 13:53:09 -05:00
|
|
|
|
|
|
|
|
2017-03-08 19:55:12 -05:00
|
|
|
@vmanager.route('/deploy/<int:product_id>', methods=['GET', 'POST'])
|
2017-03-08 13:53:09 -05:00
|
|
|
@login_required
|
|
|
|
def deploy(product_id=None):
|
|
|
|
#if current_user.wallet < 20:
|
|
|
|
# flash('Недостатъчно средства в сметката за тази операция')
|
|
|
|
# return redirect(url_for('uinvoice.addfunds'))
|
|
|
|
|
|
|
|
if current_user.name is None:
|
2017-05-25 01:54:33 -04:00
|
|
|
flash('Please update profile info for this operation.')
|
2017-03-08 13:53:09 -05:00
|
|
|
return redirect(url_for('uinvoice.profile'))
|
|
|
|
|
|
|
|
page = { 'title': 'Deploy' }
|
|
|
|
try:
|
|
|
|
product = Product.get_products()[product_id]
|
|
|
|
except:
|
2017-06-06 09:49:32 -04:00
|
|
|
current_app.logger.error('unknown product {}'.format(product_id))
|
2017-03-08 13:53:09 -05:00
|
|
|
abort(404)
|
|
|
|
product_pic = '..' + product['img']
|
|
|
|
product_name = product['name']
|
|
|
|
product_description = product['description']
|
|
|
|
|
|
|
|
product_cpu = product['cpu']
|
|
|
|
product_mem = product['mem']
|
|
|
|
product_hdd = product['hdd']
|
|
|
|
product_recipe = product['recipe']
|
|
|
|
|
|
|
|
hostname = 'deploy-{}.local'.format(randstr(6))
|
|
|
|
|
|
|
|
form = DeployForm(servername=hostname, cpu=product_cpu, mem=product_mem, hdd=product_hdd, recipe=product_recipe)
|
|
|
|
form.region.choices = current_app.config['REGIONS']
|
|
|
|
form.recipe.choices = current_app.config['RECIPES']
|
|
|
|
|
|
|
|
if current_user.confirmed and form.validate_on_submit():
|
|
|
|
client_id = current_user.pid
|
|
|
|
data = { 'clientid': str(client_id),
|
|
|
|
'clientname': str(current_user.name),
|
|
|
|
'clientemail': str(current_user.email),
|
|
|
|
'hostname': str(form.servername.data),
|
|
|
|
'vmpass': form.vmpassword.data,
|
|
|
|
'region': form.region.data,
|
|
|
|
'vps_type': 'kvm',
|
|
|
|
'vps_recipe': form.recipe.data,
|
|
|
|
'vps_cpu': form.cpu.data,
|
|
|
|
'vps_mem': form.mem.data,
|
|
|
|
'vps_hdd': form.hdd.data,
|
2017-06-01 18:27:17 -04:00
|
|
|
'vps_ipv4': form.ipv4.data }
|
2017-03-08 13:53:09 -05:00
|
|
|
|
|
|
|
try:
|
|
|
|
query = contact_proxmaster(data, 'vmcreate')
|
|
|
|
except:
|
|
|
|
flash('Region unreachable! Please try again later...')
|
2017-07-11 12:20:44 -04:00
|
|
|
return redirect(url_for('main.dashboard'))
|
2017-03-08 13:53:09 -05:00
|
|
|
|
|
|
|
if query is not None:
|
2017-06-01 18:27:17 -04:00
|
|
|
deployment = Deployment(user_id=client_id, product_id=product_id, machine_alias=form.servername.data, machine_id=query['cube'], machine_cpu=form.cpu.data, machine_mem=form.mem.data, machine_hdd=form.hdd.data, date_expire=(datetime.utcnow() + timedelta(days=30)), enabled=True)
|
2017-03-08 13:53:09 -05:00
|
|
|
db.session.add(deployment)
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
flash('Deploy requested.')
|
|
|
|
else:
|
|
|
|
flash('Deploy cancelled! Please try again later...')
|
|
|
|
|
2017-07-11 12:20:44 -04:00
|
|
|
return redirect(url_for('main.dashboard'))
|
2017-03-08 13:53:09 -05:00
|
|
|
|
2017-03-08 19:55:12 -05:00
|
|
|
return render_template('vmanager/deploy.html', page=page, form=form, product_id=product_id, product_pic=product_pic, product_name=product_name, product_description=product_description, product_recipe=product_recipe)
|
2017-03-08 13:53:09 -05:00
|
|
|
|
2017-07-14 09:04:27 -04:00
|
|
|
@vmanager.route('/activate/<int:itemid>', methods=['GET', 'POST'])
|
2017-07-06 17:15:02 -04:00
|
|
|
@login_required
|
2017-07-14 09:00:04 -04:00
|
|
|
def activate(itemid=0):
|
2017-07-06 17:15:02 -04:00
|
|
|
#work with disabled deploys only
|
2017-07-13 19:46:51 -04:00
|
|
|
result = current_user.inv_deployments.all()
|
2017-07-06 17:15:02 -04:00
|
|
|
inventory = []
|
|
|
|
for invcls in result:
|
|
|
|
inventory.extend([invcls.machine_id])
|
2017-07-13 19:46:51 -04:00
|
|
|
if current_user.is_administrator():
|
2017-07-14 09:00:04 -04:00
|
|
|
current_app.logger.info('[ADMIN] Access override for deployment id:{}'.format(itemid))
|
|
|
|
elif not itemid in inventory:
|
|
|
|
current_app.logger.warning('[{}] Access violation with deployment id: {}'.format(current_user.email, itemid))
|
2017-07-06 17:15:02 -04:00
|
|
|
abort(404)
|
2017-07-13 19:46:51 -04:00
|
|
|
|
2017-07-15 00:13:57 -04:00
|
|
|
deploy = Deployment.query.filter_by(machine_id=itemid).first()
|
|
|
|
cpu_cost = deploy.machine_cpu * current_app.config['CPU_RATIO']
|
|
|
|
mem_cost = ( deploy.machine_mem / 1024 ) * current_app.config['MEM_RATIO']
|
|
|
|
hdd_cost = deploy.machine_hdd * current_app.config['HDD_RATIO']
|
|
|
|
total = round(cpu_cost + mem_cost + hdd_cost,2)
|
|
|
|
form = ActivateForm(period=int(deploy.period))
|
|
|
|
|
2017-07-13 19:46:51 -04:00
|
|
|
if current_user.confirmed and form.validate_on_submit():
|
2017-07-15 00:13:57 -04:00
|
|
|
if current_user.wallet < total:
|
|
|
|
flash('Insufficient Funds')
|
|
|
|
return redirect(url_for('uinvoice.transactions'))
|
2017-07-15 00:28:04 -04:00
|
|
|
current_app.logger.info('[{}] Charge deployment: {}'.format(current_user.email, deploy.machine_id))
|
2017-07-15 00:13:57 -04:00
|
|
|
today = datetime.utcnow()
|
|
|
|
current_app.logger.info(form.period.data)
|
|
|
|
|
|
|
|
daysleft = relativedelta(today, months=+(form.period.data))
|
|
|
|
|
|
|
|
deploy.last_charge_date = today
|
|
|
|
deploy.period = form.period.data
|
|
|
|
deploy.daysleft = form.period.data * daysleft.days
|
|
|
|
deploy.warning = False
|
2017-07-15 00:28:04 -04:00
|
|
|
deploy.enabled = True
|
2017-07-15 00:13:57 -04:00
|
|
|
db.session.commit()
|
|
|
|
|
2017-07-15 00:28:04 -04:00
|
|
|
transaction = Transaction(user_id=int(current_user.pid), description='Deployment {} activated for {} month(s)'.format(deploy.machine_alias, form.period.data), value=-total)
|
2017-07-15 00:13:57 -04:00
|
|
|
db.session.add(transaction)
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
current_user.wallet = current_user.wallet - total
|
|
|
|
db.session.commit()
|
|
|
|
return redirect(url_for('main.dashboard'))
|
|
|
|
return render_template('vmanager/activate.html', form=form, deploy=deploy, cpu_cost=cpu_cost, mem_cost=mem_cost, hdd_cost=hdd_cost, total=total)
|
2017-07-06 17:15:02 -04:00
|
|
|
|
2017-03-08 19:55:12 -05:00
|
|
|
@vmanager.route('/<cmd>/<int:vmid>')
|
2017-03-08 13:53:09 -05:00
|
|
|
@login_required
|
|
|
|
def command(cmd=None, vmid=0):
|
2017-06-26 10:31:30 -04:00
|
|
|
valid_commands = ['vmstatus', 'vmstart', 'vmshutdown', 'vmstop', 'vmvnc']
|
|
|
|
|
2017-03-08 13:53:09 -05:00
|
|
|
#checks whether this is a valid command
|
|
|
|
if not cmd in valid_commands:
|
2017-06-06 09:49:32 -04:00
|
|
|
current_app.logger.warning(cmd + ' is not a valid command!')
|
2017-03-08 13:53:09 -05:00
|
|
|
abort(404)
|
|
|
|
#if cmd == 'vmstart' and current_user.wallet < 3.0:
|
|
|
|
# flash('Недостатъчно средства в сметката за тази операция')
|
|
|
|
# return redirect(url_for('uinvoice.addfunds'))
|
|
|
|
|
2017-06-28 10:42:21 -04:00
|
|
|
#work with enabled deploys only
|
2017-07-06 17:15:02 -04:00
|
|
|
result = current_user.inv_deployments.filter_by(enabled=True)
|
2017-03-08 13:53:09 -05:00
|
|
|
inventory = []
|
|
|
|
for invcls in result:
|
2017-06-26 10:31:30 -04:00
|
|
|
inventory.extend([invcls.machine_id])
|
2017-06-06 09:49:32 -04:00
|
|
|
|
|
|
|
if current_user.is_administrator():
|
2017-06-26 10:31:30 -04:00
|
|
|
current_app.logger.info('[ADMIN] Access override for cube id:{}'.format(vmid))
|
2017-06-06 09:49:32 -04:00
|
|
|
db_result = contact_proxmaster({}, cmd, vmid)
|
2017-07-06 17:15:02 -04:00
|
|
|
if cmd == 'vmvnc':
|
|
|
|
return redirect(db_result['url'])
|
|
|
|
else:
|
|
|
|
#checks if current user owns this vmid
|
|
|
|
if not vmid in inventory:
|
|
|
|
current_app.logger.warning('[{}] Access violation with cube id: {}'.format(current_user.email, vmid))
|
|
|
|
#TODO: log ips
|
|
|
|
else:
|
|
|
|
db_result = contact_proxmaster({}, cmd, vmid)
|
|
|
|
#print(db_result)
|
|
|
|
if cmd == 'vmvnc':
|
|
|
|
return redirect(db_result['url'])
|
2017-03-08 13:53:09 -05:00
|
|
|
abort(404)
|
|
|
|
|