2016-08-12 16:49:53 +00:00
import base64
2018-04-12 04:18:44 +00:00
import logging as logger
2016-08-12 16:49:53 +00:00
import os
2015-12-13 09:34:12 +00:00
import traceback
2016-11-21 14:52:07 +00:00
import re
2018-10-01 17:15:09 +00:00
import datetime
2018-10-21 22:38:12 +00:00
import json
2016-08-12 16:49:53 +00:00
from distutils . util import strtobool
from distutils . version import StrictVersion
2015-12-13 09:34:12 +00:00
from functools import wraps
2016-08-12 16:49:53 +00:00
from io import BytesIO
2018-08-22 01:36:53 +00:00
from ast import literal_eval
2016-08-12 16:49:53 +00:00
2016-09-17 13:41:22 +00:00
import qrcode as qrc
import qrcode . image . svg as qrc_svg
2018-01-22 15:22:19 +00:00
from flask import g , request , make_response , jsonify , render_template , session , redirect , url_for , send_from_directory , abort , flash
2016-07-01 19:41:41 +00:00
from flask_login import login_user , logout_user , current_user , login_required
2015-12-16 17:50:28 +00:00
from werkzeug import secure_filename
2015-12-13 09:34:12 +00:00
2018-06-24 22:31:54 +00:00
from . models import User , Account , Domain , Record , Role , Server , History , Anonymous , Setting , DomainSetting , DomainTemplate , DomainTemplateRecord
2018-11-21 03:24:33 +00:00
from app import app , login_manager , csrf
2018-03-30 06:49:35 +00:00
from app . lib import utils
2018-10-21 22:38:12 +00:00
from app . oauth import github_oauth , google_oauth , oidc_oauth
2018-09-01 10:53:05 +00:00
from app . decorators import admin_role_required , operator_role_required , can_access_domain , can_configure_dnssec , can_create_domain
2016-06-16 08:33:05 +00:00
2018-03-28 09:43:54 +00:00
if app . config [ ' SAML_ENABLED ' ] :
from onelogin . saml2 . utils import OneLogin_Saml2_Utils
2015-12-13 09:34:12 +00:00
2018-08-23 02:23:21 +00:00
google = None
github = None
2018-04-12 04:18:44 +00:00
logging = logger . getLogger ( __name__ )
2018-08-23 02:23:21 +00:00
2015-12-13 09:34:12 +00:00
2018-03-31 01:21:02 +00:00
# FILTERS
2018-06-10 13:16:28 +00:00
app . jinja_env . filters [ ' display_record_name ' ] = utils . display_record_name
app . jinja_env . filters [ ' display_master_name ' ] = utils . display_master_name
app . jinja_env . filters [ ' display_second_to_time ' ] = utils . display_time
app . jinja_env . filters [ ' email_to_gravatar_url ' ] = utils . email_to_gravatar_url
2018-09-03 10:27:09 +00:00
app . jinja_env . filters [ ' display_setting_state ' ] = utils . display_setting_state
2015-12-13 09:34:12 +00:00
2018-03-30 06:49:35 +00:00
2018-08-18 15:42:18 +00:00
@app.context_processor
def inject_sitename ( ) :
setting = Setting ( ) . get ( ' site_name ' )
return dict ( SITE_NAME = setting )
2016-04-29 21:36:37 +00:00
@app.context_processor
2018-08-18 11:41:59 +00:00
def inject_setting ( ) :
setting = Setting ( )
return dict ( SETTING = setting )
2016-11-21 12:42:00 +00:00
2018-03-30 06:49:35 +00:00
2018-08-23 02:23:21 +00:00
@app.before_first_request
def register_modules ( ) :
global google
global github
2018-10-21 22:38:12 +00:00
global oidc
2018-08-23 02:23:21 +00:00
google = google_oauth ( )
github = github_oauth ( )
2018-10-21 22:38:12 +00:00
oidc = oidc_oauth ( )
2018-08-23 02:23:21 +00:00
2015-12-13 09:34:12 +00:00
# START USER AUTHENTICATION HANDLER
@app.before_request
def before_request ( ) :
# check if user is anonymous
g . user = current_user
login_manager . anonymous_user = Anonymous
2018-08-18 11:41:59 +00:00
# check site maintenance mode
maintenance = Setting ( ) . get ( ' maintenance ' )
2018-08-31 04:57:06 +00:00
if maintenance and current_user . is_authenticated and current_user . role . name not in [ ' Administrator ' , ' Operator ' ] :
2018-08-18 11:41:59 +00:00
return render_template ( ' maintenance.html ' )
2018-10-01 17:15:09 +00:00
# Manage session timeout
session . permanent = True
app . permanent_session_lifetime = datetime . timedelta ( minutes = int ( Setting ( ) . get ( ' session_timeout ' ) ) )
session . modified = True
g . user = current_user
2016-07-13 14:33:21 +00:00
2015-12-13 09:34:12 +00:00
@login_manager.user_loader
def load_user ( id ) :
"""
This will be current_user
"""
return User . query . get ( int ( id ) )
2016-06-20 09:32:14 +00:00
def dyndns_login_required ( f ) :
@wraps ( f )
def decorated_function ( * args , * * kwargs ) :
if current_user . is_authenticated is False :
return render_template ( ' dyndns.html ' , response = ' badauth ' ) , 200
return f ( * args , * * kwargs )
return decorated_function
2018-03-30 06:49:35 +00:00
2016-06-20 09:32:14 +00:00
@login_manager.request_loader
def login_via_authorization_header ( request ) :
auth_header = request . headers . get ( ' Authorization ' )
if auth_header :
auth_header = auth_header . replace ( ' Basic ' , ' ' , 1 )
try :
2018-04-10 00:08:22 +00:00
auth_header = str ( base64 . b64decode ( auth_header ) , ' utf-8 ' )
2016-06-20 09:32:14 +00:00
username , password = auth_header . split ( " : " )
2018-03-30 06:49:35 +00:00
except TypeError as e :
2016-06-20 09:32:14 +00:00
return None
user = User ( username = username , password = password , plain_text_password = password )
try :
2018-07-05 07:25:05 +00:00
auth = user . is_validate ( method = ' LOCAL ' , src_ip = request . remote_addr )
2016-06-20 09:32:14 +00:00
if auth == False :
return None
else :
login_user ( user , remember = False )
return user
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Error: {0} ' . format ( e ) )
2016-06-20 09:32:14 +00:00
return None
return None
2015-12-13 09:34:12 +00:00
# END USER AUTHENTICATION HANDLER
# START VIEWS
2016-05-15 22:01:57 +00:00
@app.errorhandler ( 400 )
def http_bad_request ( e ) :
return redirect ( url_for ( ' error ' , code = 400 ) )
2018-03-30 06:49:35 +00:00
2016-05-15 22:01:57 +00:00
@app.errorhandler ( 401 )
def http_unauthorized ( e ) :
return redirect ( url_for ( ' error ' , code = 401 ) )
2018-03-30 06:49:35 +00:00
2016-05-15 22:01:57 +00:00
@app.errorhandler ( 404 )
def http_internal_server_error ( e ) :
return redirect ( url_for ( ' error ' , code = 404 ) )
2018-03-30 06:49:35 +00:00
2016-05-15 22:01:57 +00:00
@app.errorhandler ( 500 )
def http_page_not_found ( e ) :
return redirect ( url_for ( ' error ' , code = 500 ) )
2018-03-30 06:49:35 +00:00
2018-03-30 23:52:14 +00:00
@app.route ( ' /error/<path:code> ' )
2015-12-13 09:34:12 +00:00
def error ( code , msg = None ) :
supported_code = ( ' 400 ' , ' 401 ' , ' 404 ' , ' 500 ' )
if code in supported_code :
2018-04-01 00:57:41 +00:00
return render_template ( ' errors/ {0} .html ' . format ( code ) , msg = msg ) , int ( code )
2015-12-13 09:34:12 +00:00
else :
2016-05-15 22:01:57 +00:00
return render_template ( ' errors/404.html ' ) , 404
2015-12-13 09:34:12 +00:00
2018-03-30 06:49:35 +00:00
2016-04-23 00:19:03 +00:00
@app.route ( ' /register ' , methods = [ ' GET ' ] )
def register ( ) :
2018-08-18 15:42:18 +00:00
if Setting ( ) . get ( ' signup_enabled ' ) :
2016-06-13 04:48:48 +00:00
return render_template ( ' register.html ' )
else :
return render_template ( ' errors/404.html ' ) , 404
2015-12-13 09:34:12 +00:00
2018-03-30 06:49:35 +00:00
2017-09-22 14:28:09 +00:00
@app.route ( ' /google/login ' )
def google_login ( ) :
2018-08-23 02:23:21 +00:00
if not Setting ( ) . get ( ' google_oauth_enabled ' ) or google is None :
logging . error ( ' Google OAuth is disabled or you have not yet reloaded the pda application after enabling. ' )
2017-09-22 14:28:09 +00:00
return abort ( 400 )
2018-08-19 08:29:50 +00:00
else :
2018-10-22 01:33:46 +00:00
redirect_uri = url_for ( ' google_authorized ' , _external = True )
return google . authorize_redirect ( redirect_uri )
2017-09-22 14:28:09 +00:00
2016-08-05 08:20:41 +00:00
@app.route ( ' /github/login ' )
def github_login ( ) :
2018-08-23 02:23:21 +00:00
if not Setting ( ) . get ( ' github_oauth_enabled ' ) or github is None :
logging . error ( ' Github OAuth is disabled or you have not yet reloaded the pda application after enabling. ' )
2016-08-05 08:20:41 +00:00
return abort ( 400 )
2018-08-19 08:29:50 +00:00
else :
2018-10-22 01:33:46 +00:00
redirect_uri = url_for ( ' github_authorized ' , _external = True )
return github . authorize_redirect ( redirect_uri )
2018-08-19 08:29:50 +00:00
2018-10-21 22:38:12 +00:00
@app.route ( ' /oidc/login ' )
def oidc_login ( ) :
if not Setting ( ) . get ( ' oidc_oauth_enabled ' ) or oidc is None :
logging . error ( ' OIDC OAuth is disabled or you have not yet reloaded the pda application after enabling. ' )
return abort ( 400 )
else :
redirect_uri = url_for ( ' oidc_authorized ' , _external = True )
return oidc . authorize_redirect ( redirect_uri )
2016-08-05 08:20:41 +00:00
2017-10-31 18:21:22 +00:00
@app.route ( ' /saml/login ' )
def saml_login ( ) :
if not app . config . get ( ' SAML_ENABLED ' ) :
return abort ( 400 )
2017-10-31 21:38:26 +00:00
req = utils . prepare_flask_request ( request )
auth = utils . init_saml_auth ( req )
redirect_url = OneLogin_Saml2_Utils . get_self_url ( req ) + url_for ( ' saml_authorized ' )
return redirect ( auth . login ( return_to = redirect_url ) )
2017-10-31 18:21:22 +00:00
2018-08-19 08:29:50 +00:00
2017-10-31 21:38:26 +00:00
@app.route ( ' /saml/metadata ' )
2017-10-31 18:21:22 +00:00
def saml_metadata ( ) :
2017-10-31 21:38:26 +00:00
if not app . config . get ( ' SAML_ENABLED ' ) :
return abort ( 400 )
2017-10-31 18:21:22 +00:00
req = utils . prepare_flask_request ( request )
auth = utils . init_saml_auth ( req )
settings = auth . get_settings ( )
metadata = settings . get_sp_metadata ( )
errors = settings . validate_metadata ( metadata )
if len ( errors ) == 0 :
resp = make_response ( metadata , 200 )
resp . headers [ ' Content-Type ' ] = ' text/xml '
else :
resp = make_response ( errors . join ( ' , ' ) , 500 )
return resp
2018-08-19 08:29:50 +00:00
2017-10-31 21:38:26 +00:00
@app.route ( ' /saml/authorized ' , methods = [ ' GET ' , ' POST ' ] )
2018-11-21 03:24:33 +00:00
@csrf.exempt
2017-10-31 21:38:26 +00:00
def saml_authorized ( ) :
errors = [ ]
if not app . config . get ( ' SAML_ENABLED ' ) :
return abort ( 400 )
req = utils . prepare_flask_request ( request )
auth = utils . init_saml_auth ( req )
auth . process_response ( )
2017-11-01 12:31:41 +00:00
errors = auth . get_errors ( )
2017-10-31 21:38:26 +00:00
if len ( errors ) == 0 :
session [ ' samlUserdata ' ] = auth . get_attributes ( )
session [ ' samlNameId ' ] = auth . get_nameid ( )
session [ ' samlSessionIndex ' ] = auth . get_session_index ( )
self_url = OneLogin_Saml2_Utils . get_self_url ( req )
self_url = self_url + req [ ' script_name ' ]
if ' RelayState ' in request . form and self_url != request . form [ ' RelayState ' ] :
return redirect ( auth . redirect_to ( request . form [ ' RelayState ' ] ) )
2018-05-02 22:45:28 +00:00
if app . config . get ( ' SAML_ATTRIBUTE_USERNAME ' , False ) :
username = session [ ' samlUserdata ' ] [ app . config [ ' SAML_ATTRIBUTE_USERNAME ' ] ] [ 0 ] . lower ( )
else :
username = session [ ' samlNameId ' ] . lower ( )
user = User . query . filter_by ( username = username ) . first ( )
2017-10-31 21:38:26 +00:00
if not user :
# create user
2018-05-02 22:45:28 +00:00
user = User ( username = username ,
2017-11-06 22:36:11 +00:00
plain_text_password = None ,
2017-10-31 21:38:26 +00:00
email = session [ ' samlNameId ' ] )
user . create_local_user ( )
session [ ' user_id ' ] = user . id
2018-05-02 22:45:28 +00:00
email_attribute_name = app . config . get ( ' SAML_ATTRIBUTE_EMAIL ' , ' email ' )
givenname_attribute_name = app . config . get ( ' SAML_ATTRIBUTE_GIVENNAME ' , ' givenname ' )
surname_attribute_name = app . config . get ( ' SAML_ATTRIBUTE_SURNAME ' , ' surname ' )
2018-06-25 11:15:35 +00:00
account_attribute_name = app . config . get ( ' SAML_ATTRIBUTE_ACCOUNT ' , None )
2018-05-02 22:45:28 +00:00
admin_attribute_name = app . config . get ( ' SAML_ATTRIBUTE_ADMIN ' , None )
if email_attribute_name in session [ ' samlUserdata ' ] :
user . email = session [ ' samlUserdata ' ] [ email_attribute_name ] [ 0 ] . lower ( )
if givenname_attribute_name in session [ ' samlUserdata ' ] :
user . firstname = session [ ' samlUserdata ' ] [ givenname_attribute_name ] [ 0 ]
if surname_attribute_name in session [ ' samlUserdata ' ] :
user . lastname = session [ ' samlUserdata ' ] [ surname_attribute_name ] [ 0 ]
2018-06-25 11:15:35 +00:00
if admin_attribute_name :
user_accounts = set ( user . get_account ( ) )
saml_accounts = [ ]
for account_name in session [ ' samlUserdata ' ] . get ( account_attribute_name , [ ] ) :
clean_name = ' ' . join ( c for c in account_name . lower ( ) if c in " abcdefghijklmnopqrstuvwxyz0123456789 " )
if len ( clean_name ) > Account . name . type . length :
logging . error ( " Account name {0} too long. Truncated. " . format ( clean_name ) )
account = Account . query . filter_by ( name = clean_name ) . first ( )
if not account :
account = Account ( name = clean_name . lower ( ) , description = ' ' , contact = ' ' , mail = ' ' )
account . create_account ( )
history = History ( msg = ' Account {0} created ' . format ( account . name ) , created_by = ' SAML Assertion ' )
history . add ( )
saml_accounts . append ( account )
saml_accounts = set ( saml_accounts )
for account in saml_accounts - user_accounts :
account . add_user ( user )
history = History ( msg = ' Adding {0} to account {1} ' . format ( user . username , account . name ) , created_by = ' SAML Assertion ' )
history . add ( )
for account in user_accounts - saml_accounts :
account . remove_user ( user )
history = History ( msg = ' Removing {0} from account {1} ' . format ( user . username , account . name ) , created_by = ' SAML Assertion ' )
history . add ( )
2018-05-02 22:45:28 +00:00
if admin_attribute_name :
if ' true ' in session [ ' samlUserdata ' ] . get ( admin_attribute_name , [ ] ) :
2018-06-24 23:54:29 +00:00
admin_role = Role . query . filter_by ( name = ' Administrator ' ) . first ( ) . id
if user . role_id != admin_role :
user . role_id = admin_role
history = History ( msg = ' Promoting {0} to administrator ' . format ( user . username ) , created_by = ' SAML Assertion ' )
history . add ( )
2018-05-02 22:45:28 +00:00
else :
2018-06-24 23:54:29 +00:00
user_role = Role . query . filter_by ( name = ' User ' ) . first ( ) . id
if user . role_id != user_role :
user . role_id = user_role
history = History ( msg = ' Demoting {0} to user ' . format ( user . username ) , created_by = ' SAML Assertion ' )
history . add ( )
2017-11-06 22:36:11 +00:00
user . plain_text_password = None
2017-10-31 21:38:26 +00:00
user . update_profile ( )
2018-08-22 02:43:33 +00:00
session [ ' authentication_type ' ] = ' SAML '
2017-10-31 21:38:26 +00:00
login_user ( user , remember = False )
return redirect ( url_for ( ' index ' ) )
else :
2017-11-03 11:24:25 +00:00
return render_template ( ' errors/SAML.html ' , errors = errors )
2018-03-30 06:49:35 +00:00
2018-08-19 08:29:50 +00:00
2015-12-13 09:34:12 +00:00
@app.route ( ' /login ' , methods = [ ' GET ' , ' POST ' ] )
@login_manager.unauthorized_handler
def login ( ) :
2017-10-31 18:21:22 +00:00
SAML_ENABLED = app . config . get ( ' SAML_ENABLED ' )
2015-12-13 09:34:12 +00:00
if g . user is not None and current_user . is_authenticated :
return redirect ( url_for ( ' dashboard ' ) )
2017-09-22 14:28:09 +00:00
if ' google_token ' in session :
2018-10-22 01:33:46 +00:00
user_data = json . loads ( google . get ( ' userinfo ' ) . text )
2017-09-22 14:28:09 +00:00
first_name = user_data [ ' given_name ' ]
surname = user_data [ ' family_name ' ]
email = user_data [ ' email ' ]
user = User . query . filter_by ( username = email ) . first ( )
2018-10-26 01:43:25 +00:00
if user is None :
2018-10-22 01:33:46 +00:00
user = User . query . filter_by ( email = email ) . first ( )
2017-09-22 14:28:09 +00:00
if not user :
user = User ( username = email ,
firstname = first_name ,
lastname = surname ,
2017-11-06 22:36:11 +00:00
plain_text_password = None ,
2017-09-22 14:28:09 +00:00
email = email )
2018-03-30 10:43:34 +00:00
result = user . create_local_user ( )
if not result [ ' status ' ] :
session . pop ( ' google_token ' , None )
return redirect ( url_for ( ' login ' ) )
2017-09-22 14:28:09 +00:00
session [ ' user_id ' ] = user . id
login_user ( user , remember = False )
2018-08-22 02:43:33 +00:00
session [ ' authentication_type ' ] = ' OAuth '
2017-09-22 14:28:09 +00:00
return redirect ( url_for ( ' index ' ) )
2016-08-05 08:20:41 +00:00
if ' github_token ' in session :
2018-10-22 01:33:46 +00:00
me = json . loads ( github . get ( ' user ' ) . text )
2018-08-19 08:29:50 +00:00
github_username = me [ ' login ' ]
github_name = me [ ' name ' ]
github_email = me [ ' email ' ]
user = User . query . filter_by ( username = github_username ) . first ( )
2018-10-26 01:43:25 +00:00
if user is None :
2018-10-22 01:33:46 +00:00
user = User . query . filter_by ( email = github_email ) . first ( )
2016-08-05 08:20:41 +00:00
if not user :
2018-08-19 08:29:50 +00:00
user = User ( username = github_username ,
2017-11-06 22:36:11 +00:00
plain_text_password = None ,
2018-08-19 08:29:50 +00:00
firstname = github_name ,
lastname = ' ' ,
email = github_email )
2018-03-30 10:43:34 +00:00
result = user . create_local_user ( )
if not result [ ' status ' ] :
session . pop ( ' github_token ' , None )
return redirect ( url_for ( ' login ' ) )
2016-08-05 08:20:41 +00:00
session [ ' user_id ' ] = user . id
2018-08-22 02:43:33 +00:00
session [ ' authentication_type ' ] = ' OAuth '
2016-08-05 08:20:41 +00:00
login_user ( user , remember = False )
return redirect ( url_for ( ' index ' ) )
2018-10-21 22:38:12 +00:00
if ' oidc_token ' in session :
me = json . loads ( oidc . get ( ' userinfo ' ) . text )
oidc_username = me [ " preferred_username " ]
oidc_givenname = me [ " name " ]
oidc_familyname = " "
oidc_email = me [ " email " ]
user = User . query . filter_by ( username = oidc_username ) . first ( )
if not user :
user = User ( username = oidc_username ,
plain_text_password = None ,
firstname = oidc_givenname ,
lastname = oidc_familyname ,
email = oidc_email )
result = user . create_local_user ( )
if not result [ ' status ' ] :
session . pop ( ' oidc_token ' , None )
return redirect ( url_for ( ' login ' ) )
session [ ' user_id ' ] = user . id
session [ ' authentication_type ' ] = ' OAuth '
login_user ( user , remember = False )
return redirect ( url_for ( ' index ' ) )
2015-12-13 09:34:12 +00:00
if request . method == ' GET ' :
2018-08-18 15:42:18 +00:00
return render_template ( ' login.html ' , saml_enabled = SAML_ENABLED )
2016-08-05 08:20:41 +00:00
2015-12-13 09:34:12 +00:00
# process login
username = request . form [ ' username ' ]
password = request . form [ ' password ' ]
2016-08-12 16:49:53 +00:00
otp_token = request . form . get ( ' otptoken ' )
auth_method = request . form . get ( ' auth_method ' , ' LOCAL ' )
2015-12-13 09:34:12 +00:00
# addition fields for registration case
2016-08-12 16:49:53 +00:00
firstname = request . form . get ( ' firstname ' )
lastname = request . form . get ( ' lastname ' )
email = request . form . get ( ' email ' )
rpassword = request . form . get ( ' rpassword ' )
2016-08-05 08:20:41 +00:00
2018-08-22 02:43:33 +00:00
session [ ' authentication_type ' ] = ' LDAP ' if auth_method != ' LOCAL ' else ' LOCAL '
2018-04-10 01:59:28 +00:00
2015-12-13 09:34:12 +00:00
if None in [ firstname , lastname , email ] :
#login case
remember_me = False
if ' remember ' in request . form :
remember_me = True
user = User ( username = username , password = password , plain_text_password = password )
try :
2018-07-05 07:25:05 +00:00
auth = user . is_validate ( method = auth_method , src_ip = request . remote_addr )
2015-12-13 09:34:12 +00:00
if auth == False :
2018-08-18 15:42:18 +00:00
return render_template ( ' login.html ' , saml_enabled = SAML_ENABLED , error = ' Invalid credentials ' )
2018-03-30 06:49:35 +00:00
except Exception as e :
2018-08-18 15:42:18 +00:00
return render_template ( ' login.html ' , saml_enabled = SAML_ENABLED , error = e )
2015-12-13 09:34:12 +00:00
2016-06-16 08:33:05 +00:00
# check if user enabled OPT authentication
if user . otp_secret :
2018-06-06 11:17:26 +00:00
if otp_token and otp_token . isdigit ( ) :
2016-06-16 08:33:05 +00:00
good_token = user . verify_totp ( otp_token )
if not good_token :
2018-08-18 15:42:18 +00:00
return render_template ( ' login.html ' , saml_enabled = SAML_ENABLED , error = ' Invalid credentials ' )
2016-06-16 08:33:05 +00:00
else :
2018-08-18 15:42:18 +00:00
return render_template ( ' login.html ' , saml_enabled = SAML_ENABLED , error = ' Token required ' )
2016-06-16 08:33:05 +00:00
2015-12-13 09:34:12 +00:00
login_user ( user , remember = remember_me )
return redirect ( request . args . get ( ' next ' ) or url_for ( ' index ' ) )
else :
2018-04-18 06:16:02 +00:00
if not username or not password or not email :
return render_template ( ' register.html ' , error = ' Please input required information ' )
2015-12-13 09:34:12 +00:00
# registration case
user = User ( username = username , plain_text_password = password , firstname = firstname , lastname = lastname , email = email )
2016-08-05 08:20:41 +00:00
2016-04-23 00:19:03 +00:00
if password != rpassword :
2018-04-18 06:16:02 +00:00
error = " Password confirmation does not match "
2016-04-23 00:19:03 +00:00
return render_template ( ' register.html ' , error = error )
2016-08-05 08:20:41 +00:00
2015-12-13 09:34:12 +00:00
try :
result = user . create_local_user ( )
2018-08-25 07:53:10 +00:00
if result and result [ ' status ' ] :
2018-08-18 15:42:18 +00:00
return render_template ( ' login.html ' , saml_enabled = SAML_ENABLED , username = username , password = password )
2015-12-13 09:34:12 +00:00
else :
2018-03-30 10:43:34 +00:00
return render_template ( ' register.html ' , error = result [ ' msg ' ] )
2018-03-30 06:49:35 +00:00
except Exception as e :
return render_template ( ' register.html ' , error = e )
2018-08-19 08:29:50 +00:00
2017-12-04 23:14:31 +00:00
def clear_session ( ) :
2016-08-12 16:49:53 +00:00
session . pop ( ' user_id ' , None )
session . pop ( ' github_token ' , None )
2017-09-22 14:28:09 +00:00
session . pop ( ' google_token ' , None )
2018-08-22 02:43:33 +00:00
session . pop ( ' authentication_type ' , None )
2017-10-31 21:38:26 +00:00
session . clear ( )
2015-12-13 09:34:12 +00:00
logout_user ( )
2018-08-19 08:29:50 +00:00
2017-12-04 23:14:31 +00:00
@app.route ( ' /logout ' )
def logout ( ) :
2017-12-04 23:23:10 +00:00
if app . config . get ( ' SAML_ENABLED ' ) and ' samlSessionIndex ' in session and app . config . get ( ' SAML_LOGOUT ' ) :
2017-12-04 23:14:31 +00:00
req = utils . prepare_flask_request ( request )
auth = utils . init_saml_auth ( req )
if app . config . get ( ' SAML_LOGOUT_URL ' ) :
2017-12-05 02:48:18 +00:00
return redirect ( auth . logout ( name_id_format = " urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress " ,
2017-12-05 11:28:54 +00:00
return_to = app . config . get ( ' SAML_LOGOUT_URL ' ) ,
2018-08-22 02:43:33 +00:00
session_index = session [ ' samlSessionIndex ' ] , name_id = session [ ' samlNameId ' ] ) )
2017-12-05 02:48:18 +00:00
return redirect ( auth . logout ( name_id_format = " urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress " ,
2018-08-22 02:43:33 +00:00
session_index = session [ ' samlSessionIndex ' ] ,
2017-12-05 02:48:18 +00:00
name_id = session [ ' samlNameId ' ] ) )
2017-12-04 23:14:31 +00:00
clear_session ( )
2016-08-05 08:20:41 +00:00
return redirect ( url_for ( ' login ' ) )
2015-12-13 09:34:12 +00:00
2018-08-19 08:29:50 +00:00
2017-12-04 23:14:31 +00:00
@app.route ( ' /saml/sls ' )
def saml_logout ( ) :
req = utils . prepare_flask_request ( request )
auth = utils . init_saml_auth ( req )
2017-12-05 02:48:18 +00:00
url = auth . process_slo ( )
2017-12-04 23:14:31 +00:00
errors = auth . get_errors ( )
if len ( errors ) == 0 :
2017-12-05 02:48:18 +00:00
clear_session ( )
2017-12-04 23:14:31 +00:00
if url is not None :
return redirect ( url )
2018-01-20 16:17:02 +00:00
elif app . config . get ( ' SAML_LOGOUT_URL ' ) is not None :
2017-12-05 11:59:08 +00:00
return redirect ( app . config . get ( ' SAML_LOGOUT_URL ' ) )
2018-01-20 16:17:02 +00:00
else :
return redirect ( url_for ( ' login ' ) )
2017-12-04 23:14:31 +00:00
else :
return render_template ( ' errors/SAML.html ' , errors = errors )
2015-12-13 09:34:12 +00:00
2018-08-19 08:29:50 +00:00
2015-12-13 09:34:12 +00:00
@app.route ( ' /dashboard ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
def dashboard ( ) :
2018-08-20 02:59:19 +00:00
if not Setting ( ) . get ( ' pdns_api_url ' ) or not Setting ( ) . get ( ' pdns_api_key ' ) or not Setting ( ) . get ( ' pdns_version ' ) :
return redirect ( url_for ( ' admin_setting_pdns ' ) )
2018-08-21 06:26:27 +00:00
BG_DOMAIN_UPDATE = Setting ( ) . get ( ' bg_domain_updates ' )
if not BG_DOMAIN_UPDATE :
2018-06-08 09:46:17 +00:00
logging . debug ( ' Update domains in foreground ' )
2018-08-31 11:00:41 +00:00
Domain ( ) . update ( )
2018-06-08 09:46:17 +00:00
else :
logging . debug ( ' Update domains in background ' )
2016-04-27 23:19:25 +00:00
# stats for dashboard
2016-04-29 16:29:08 +00:00
domain_count = Domain . query . count ( )
2016-04-27 23:19:25 +00:00
users = User . query . all ( )
history_number = History . query . count ( )
2016-06-30 20:04:59 +00:00
history = History . query . order_by ( History . created_on . desc ( ) ) . limit ( 4 )
2016-04-27 23:19:25 +00:00
server = Server ( server_id = ' localhost ' )
statistics = server . get_statistic ( )
if statistics :
2018-03-30 06:49:35 +00:00
uptime = list ( [ uptime for uptime in statistics if uptime [ ' name ' ] == ' uptime ' ] ) [ 0 ] [ ' value ' ]
2016-04-27 23:19:25 +00:00
else :
uptime = 0
2018-06-06 10:42:57 +00:00
2018-08-21 06:26:27 +00:00
return render_template ( ' dashboard.html ' , domain_count = domain_count , users = users , history_number = history_number , uptime = uptime , histories = history , show_bg_domain_button = BG_DOMAIN_UPDATE )
2017-06-30 16:18:06 +00:00
@app.route ( ' /dashboard-domains ' , methods = [ ' GET ' ] )
@login_required
def dashboard_domains ( ) :
2018-08-31 04:57:06 +00:00
if current_user . role . name in [ ' Administrator ' , ' Operator ' ] :
2017-06-30 16:18:06 +00:00
domains = Domain . query
else :
2017-09-15 13:14:04 +00:00
domains = User ( id = current_user . id ) . get_domain_query ( )
2017-06-30 16:18:06 +00:00
template = app . jinja_env . get_template ( " dashboard_domain.html " )
render = template . make_module ( vars = { " current_user " : current_user } )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
columns = [ Domain . name , Domain . dnssec , Domain . type , Domain . serial , Domain . master , Domain . account ]
2017-06-30 16:18:06 +00:00
# History.created_on.desc()
order_by = [ ]
for i in range ( len ( columns ) ) :
2018-04-01 00:57:41 +00:00
column_index = request . args . get ( " order[ {0} ][column] " . format ( i ) )
sort_direction = request . args . get ( " order[ {0} ][dir] " . format ( i ) )
2017-06-30 16:18:06 +00:00
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 " % "
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
2018-08-31 04:57:06 +00:00
if current_user . role . name in [ ' Administrator ' , ' Operator ' ] :
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
domains = domains . outerjoin ( Account ) . filter ( Domain . name . ilike ( start + search . strip ( " ^$ " ) + end ) |
Account . name . ilike ( start + search . strip ( " ^$ " ) + end ) |
Account . description . ilike ( start + search . strip ( " ^$ " ) + end ) )
else :
domains = domains . filter ( Domain . name . ilike ( start + search . strip ( " ^$ " ) + end ) )
2017-06-30 16:18:06 +00:00
filtered_count = domains . count ( )
start = int ( request . args . get ( " start " , 0 ) )
length = min ( int ( request . args . get ( " length " , 0 ) ) , 100 )
2018-03-30 08:40:43 +00:00
if length != - 1 :
domains = domains [ start : start + length ]
2017-06-30 16:18:06 +00:00
data = [ ]
for domain in domains :
data . append ( [
render . name ( domain ) ,
render . dnssec ( domain ) ,
render . type ( domain ) ,
render . serial ( domain ) ,
render . master ( domain ) ,
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
render . account ( domain ) ,
2017-06-30 16:18:06 +00:00
render . actions ( domain ) ,
] )
response_data = {
" draw " : int ( request . args . get ( " draw " , 0 ) ) ,
" recordsTotal " : total_count ,
" recordsFiltered " : filtered_count ,
" data " : data ,
}
return jsonify ( response_data )
2015-12-13 09:34:12 +00:00
2018-06-08 11:21:17 +00:00
@app.route ( ' /dashboard-domains-updater ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
def dashboard_domains_updater ( ) :
logging . debug ( ' Update domains in background ' )
d = Domain ( ) . update ( )
response_data = {
" result " : d ,
}
return jsonify ( response_data )
2015-12-13 09:34:12 +00:00
2018-10-30 02:55:31 +00:00
@app.route ( ' /domain/<path:domain_name> ' , methods = [ ' GET ' ] )
2015-12-13 09:34:12 +00:00
@login_required
2018-03-31 00:32:46 +00:00
@can_access_domain
2015-12-13 09:34:12 +00:00
def domain ( domain_name ) :
r = Record ( )
domain = Domain . query . filter ( Domain . name == domain_name ) . first ( )
2017-10-20 10:53:03 +00:00
if not domain :
return redirect ( url_for ( ' error ' , code = 404 ) )
2015-12-13 09:34:12 +00:00
2017-10-20 10:53:03 +00:00
# query domain info from PowerDNS API
zone_info = r . get_record_data ( domain . name )
if zone_info :
jrecords = zone_info [ ' records ' ]
else :
# can not get any record, API server might be down
return redirect ( url_for ( ' error ' , code = 500 ) )
2018-09-02 01:03:01 +00:00
quick_edit = Setting ( ) . get ( ' record_quick_edit ' )
2018-08-22 01:36:53 +00:00
records_allow_to_edit = Setting ( ) . get_records_allow_to_edit ( )
forward_records_allow_to_edit = Setting ( ) . get_forward_records_allow_to_edit ( )
reverse_records_allow_to_edit = Setting ( ) . get_reverse_records_allow_to_edit ( )
2018-11-24 12:45:14 +00:00
ttl_options = Setting ( ) . get_ttl_options ( )
2017-10-20 10:53:03 +00:00
records = [ ]
2018-08-22 01:36:53 +00:00
2018-08-20 02:59:19 +00:00
if StrictVersion ( Setting ( ) . get ( ' pdns_version ' ) ) > = StrictVersion ( ' 4.0.0 ' ) :
2017-10-20 10:53:03 +00:00
for jr in jrecords :
2018-08-31 11:00:41 +00:00
if jr [ ' type ' ] in records_allow_to_edit :
2017-10-20 10:53:03 +00:00
for subrecord in jr [ ' records ' ] :
record = Record ( name = jr [ ' name ' ] , type = jr [ ' type ' ] , status = ' Disabled ' if subrecord [ ' disabled ' ] else ' Active ' , ttl = jr [ ' ttl ' ] , data = subrecord [ ' content ' ] )
2016-06-08 04:00:55 +00:00
records . append ( record )
2016-11-21 14:52:07 +00:00
if not re . search ( ' ip6 \ .arpa|in-addr \ .arpa$ ' , domain_name ) :
2018-08-22 01:36:53 +00:00
editable_records = forward_records_allow_to_edit
2016-11-21 14:52:07 +00:00
else :
2018-08-22 01:36:53 +00:00
editable_records = reverse_records_allow_to_edit
2018-11-24 12:45:14 +00:00
return render_template ( ' domain.html ' , domain = domain , records = records , editable_records = editable_records , quick_edit = quick_edit , ttl_options = ttl_options )
2015-12-13 09:34:12 +00:00
else :
2017-10-20 10:53:03 +00:00
for jr in jrecords :
2018-08-31 11:00:41 +00:00
if jr [ ' type ' ] in records_allow_to_edit :
2017-10-20 10:53:03 +00:00
record = Record ( name = jr [ ' name ' ] , type = jr [ ' type ' ] , status = ' Disabled ' if jr [ ' disabled ' ] else ' Active ' , ttl = jr [ ' ttl ' ] , data = jr [ ' content ' ] )
records . append ( record )
if not re . search ( ' ip6 \ .arpa|in-addr \ .arpa$ ' , domain_name ) :
2018-08-22 01:36:53 +00:00
editable_records = forward_records_allow_to_edit
2017-10-20 10:53:03 +00:00
else :
2018-08-22 01:36:53 +00:00
editable_records = reverse_records_allow_to_edit
2018-11-24 12:45:14 +00:00
return render_template ( ' domain.html ' , domain = domain , records = records , editable_records = editable_records , quick_edit = quick_edit , ttl_options = ttl_options )
2015-12-13 09:34:12 +00:00
@app.route ( ' /admin/domain/add ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
2018-09-01 10:53:05 +00:00
@can_create_domain
2015-12-13 09:34:12 +00:00
def domain_add ( ) :
2018-01-22 15:22:19 +00:00
templates = DomainTemplate . query . all ( )
2015-12-13 09:34:12 +00:00
if request . method == ' POST ' :
try :
domain_name = request . form . getlist ( ' domain_name ' ) [ 0 ]
domain_type = request . form . getlist ( ' radio_type ' ) [ 0 ]
2018-01-22 15:22:19 +00:00
domain_template = request . form . getlist ( ' domain_template ' ) [ 0 ]
2016-03-05 10:04:12 +00:00
soa_edit_api = request . form . getlist ( ' radio_type_soa_edit_api ' ) [ 0 ]
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
account_id = request . form . getlist ( ' accountid ' ) [ 0 ]
2016-01-15 04:58:53 +00:00
if ' ' in domain_name or not domain_name or not domain_type :
2016-05-15 22:01:57 +00:00
return render_template ( ' errors/400.html ' , msg = " Please correct your input " ) , 400
2016-01-15 04:58:53 +00:00
2015-12-13 09:34:12 +00:00
if domain_type == ' slave ' :
if request . form . getlist ( ' domain_master_address ' ) :
domain_master_string = request . form . getlist ( ' domain_master_address ' ) [ 0 ]
domain_master_string = domain_master_string . replace ( ' ' , ' ' )
domain_master_ips = domain_master_string . split ( ' , ' )
else :
domain_master_ips = [ ]
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
account_name = Account ( ) . get_name_by_id ( account_id )
2015-12-13 09:34:12 +00:00
d = Domain ( )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
result = d . add ( domain_name = domain_name , domain_type = domain_type , soa_edit_api = soa_edit_api , domain_master_ips = domain_master_ips , account_name = account_name )
2015-12-13 09:34:12 +00:00
if result [ ' status ' ] == ' ok ' :
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
history = History ( msg = ' Add domain {0} ' . format ( domain_name ) , detail = str ( { ' domain_type ' : domain_type , ' domain_master_ips ' : domain_master_ips , ' account_id ' : account_id } ) , created_by = current_user . username )
2015-12-13 09:34:12 +00:00
history . add ( )
2018-09-01 10:53:05 +00:00
# grant user access to the domain
2018-09-04 06:10:55 +00:00
Domain ( name = domain_name ) . grant_privileges ( [ current_user . username ] )
2018-09-01 10:53:05 +00:00
# apply template if needed
2018-01-22 15:22:19 +00:00
if domain_template != ' 0 ' :
template = DomainTemplate . query . filter ( DomainTemplate . id == domain_template ) . first ( )
template_records = DomainTemplateRecord . query . filter ( DomainTemplateRecord . template_id == domain_template ) . all ( )
record_data = [ ]
for template_record in template_records :
record_row = { ' record_data ' : template_record . data , ' record_name ' : template_record . name , ' record_status ' : template_record . status , ' record_ttl ' : template_record . ttl , ' record_type ' : template_record . type }
record_data . append ( record_row )
r = Record ( )
result = r . apply ( domain_name , record_data )
if result [ ' status ' ] == ' ok ' :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Applying template {0} to {1} , created records successfully. ' . format ( template . name , domain_name ) , detail = str ( result ) , created_by = current_user . username )
2018-01-22 15:22:19 +00:00
history . add ( )
else :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Applying template {0} to {1} , FAILED to created records. ' . format ( template . name , domain_name ) , detail = str ( result ) , created_by = current_user . username )
2018-01-22 15:22:19 +00:00
history . add ( )
2015-12-13 09:34:12 +00:00
return redirect ( url_for ( ' dashboard ' ) )
else :
2016-05-15 22:01:57 +00:00
return render_template ( ' errors/400.html ' , msg = result [ ' msg ' ] ) , 400
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot add domain. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2015-12-13 09:34:12 +00:00
return redirect ( url_for ( ' error ' , code = 500 ) )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
else :
accounts = Account . query . all ( )
return render_template ( ' domain_add.html ' , templates = templates , accounts = accounts )
2015-12-13 09:34:12 +00:00
2018-11-21 03:24:33 +00:00
@app.route ( ' /admin/domain/<path:domain_name>/delete ' , methods = [ ' POST ' ] )
2015-12-13 09:34:12 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2015-12-13 09:34:12 +00:00
def domain_delete ( domain_name ) :
d = Domain ( )
result = d . delete ( domain_name )
2016-08-05 08:20:41 +00:00
2015-12-13 09:34:12 +00:00
if result [ ' status ' ] == ' error ' :
return redirect ( url_for ( ' error ' , code = 500 ) )
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Delete domain {0} ' . format ( domain_name ) , created_by = current_user . username )
2015-12-13 09:34:12 +00:00
history . add ( )
return redirect ( url_for ( ' dashboard ' ) )
2018-03-30 23:52:14 +00:00
@app.route ( ' /admin/domain/<path:domain_name>/manage ' , methods = [ ' GET ' , ' POST ' ] )
2015-12-13 09:34:12 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2015-12-13 09:34:12 +00:00
def domain_management ( domain_name ) :
if request . method == ' GET ' :
domain = Domain . query . filter ( Domain . name == domain_name ) . first ( )
if not domain :
return redirect ( url_for ( ' error ' , code = 404 ) )
users = User . query . all ( )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
accounts = Account . query . all ( )
2015-12-13 09:34:12 +00:00
2018-10-02 07:22:15 +00:00
# get list of user ids to initialize selection data
2015-12-13 09:34:12 +00:00
d = Domain ( name = domain_name )
domain_user_ids = d . get_user ( )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
account = d . get_account ( )
2015-12-13 09:34:12 +00:00
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
return render_template ( ' domain_management.html ' , domain = domain , users = users , domain_user_ids = domain_user_ids , accounts = accounts , domain_account = account )
2015-12-13 09:34:12 +00:00
if request . method == ' POST ' :
# username in right column
new_user_list = request . form . getlist ( ' domain_multi_user[] ' )
2018-10-02 07:23:41 +00:00
# grant/revoke user privileges
2018-09-01 10:53:05 +00:00
d = Domain ( name = domain_name )
2018-09-04 06:10:55 +00:00
d . grant_privileges ( new_user_list )
2015-12-13 09:34:12 +00:00
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Change domain {0} access control ' . format ( domain_name ) , detail = str ( { ' user_has_access ' : new_user_list } ) , created_by = current_user . username )
2015-12-13 09:34:12 +00:00
history . add ( )
return redirect ( url_for ( ' domain_management ' , domain_name = domain_name ) )
2016-03-05 10:04:12 +00:00
2018-04-02 06:38:53 +00:00
@app.route ( ' /admin/domain/<path:domain_name>/change_soa_setting ' , methods = [ ' POST ' ] )
2018-03-27 23:41:33 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-03-27 23:41:33 +00:00
def domain_change_soa_edit_api ( domain_name ) :
domain = Domain . query . filter ( Domain . name == domain_name ) . first ( )
if not domain :
return redirect ( url_for ( ' error ' , code = 404 ) )
new_setting = request . form . get ( ' soa_edit_api ' )
2018-08-31 11:00:41 +00:00
if new_setting is None :
2018-03-27 23:41:33 +00:00
return redirect ( url_for ( ' error ' , code = 500 ) )
if new_setting == ' 0 ' :
return redirect ( url_for ( ' domain_management ' , domain_name = domain_name ) )
2018-04-02 06:38:53 +00:00
2018-03-27 23:41:33 +00:00
d = Domain ( )
status = d . update_soa_setting ( domain_name = domain_name , soa_edit_api = new_setting )
if status [ ' status ' ] != None :
users = User . query . all ( )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
accounts = Account . query . all ( )
2018-03-27 23:41:33 +00:00
d = Domain ( name = domain_name )
domain_user_ids = d . get_user ( )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
account = d . get_account ( )
return render_template ( ' domain_management.html ' , domain = domain , users = users , domain_user_ids = domain_user_ids , accounts = accounts , domain_account = account )
else :
return redirect ( url_for ( ' error ' , code = 500 ) )
@app.route ( ' /admin/domain/<path:domain_name>/change_account ' , methods = [ ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
def domain_change_account ( domain_name ) :
domain = Domain . query . filter ( Domain . name == domain_name ) . first ( )
if not domain :
return redirect ( url_for ( ' error ' , code = 404 ) )
account_id = request . form . get ( ' accountid ' )
2018-08-30 04:36:54 +00:00
status = Domain ( name = domain . name ) . assoc_account ( account_id )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
if status [ ' status ' ] :
2018-08-30 04:36:54 +00:00
return redirect ( url_for ( ' domain_management ' , domain_name = domain . name ) )
2018-03-27 23:41:33 +00:00
else :
return redirect ( url_for ( ' error ' , code = 500 ) )
2016-03-05 10:04:12 +00:00
2018-03-30 23:52:14 +00:00
@app.route ( ' /domain/<path:domain_name>/apply ' , methods = [ ' POST ' ] , strict_slashes = False )
2015-12-13 09:34:12 +00:00
@login_required
2018-03-31 00:32:46 +00:00
@can_access_domain
2015-12-13 09:34:12 +00:00
def record_apply ( domain_name ) :
"""
example jdata : { u ' record_ttl ' : u ' 1800 ' , u ' record_type ' : u ' CNAME ' , u ' record_name ' : u ' test4 ' , u ' record_status ' : u ' Active ' , u ' record_data ' : u ' duykhanh.me ' }
"""
#TODO: filter removed records / name modified records.
2018-04-12 04:18:44 +00:00
2015-12-13 09:34:12 +00:00
try :
2018-03-30 06:49:35 +00:00
jdata = request . json
2015-12-13 09:34:12 +00:00
2018-04-12 04:18:44 +00:00
submitted_serial = jdata [ ' serial ' ]
submitted_record = jdata [ ' record ' ]
domain = Domain . query . filter ( Domain . name == domain_name ) . first ( )
logging . debug ( ' Your submitted serial: {0} ' . format ( submitted_serial ) )
logging . debug ( ' Current domain serial: {0} ' . format ( domain . serial ) )
if domain :
if int ( submitted_serial ) != domain . serial :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' The zone has been changed by another session or user. Please refresh this web page to load updated records. ' } ) , 500 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Domain name {0} does not exist ' . format ( domain_name ) } ) , 404 )
2015-12-13 09:34:12 +00:00
r = Record ( )
2018-04-12 04:18:44 +00:00
result = r . apply ( domain_name , submitted_record )
2015-12-13 09:34:12 +00:00
if result [ ' status ' ] == ' ok ' :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Apply record changes to domain {0} ' . format ( domain_name ) , detail = str ( jdata ) , created_by = current_user . username )
2015-12-13 09:34:12 +00:00
history . add ( )
return make_response ( jsonify ( result ) , 200 )
else :
return make_response ( jsonify ( result ) , 400 )
2018-09-06 04:35:54 +00:00
except Exception as e :
2018-10-02 07:04:07 +00:00
logging . error ( ' Cannot apply record changes. Error: {0} ' . format ( e ) )
2018-09-06 04:35:54 +00:00
logging . debug ( traceback . format_exc ( ) )
2015-12-13 09:34:12 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Error when applying new changes ' } ) , 500 )
2018-03-30 23:52:14 +00:00
@app.route ( ' /domain/<path:domain_name>/update ' , methods = [ ' POST ' ] , strict_slashes = False )
2015-12-13 09:34:12 +00:00
@login_required
2018-03-31 00:32:46 +00:00
@can_access_domain
2015-12-13 09:34:12 +00:00
def record_update ( domain_name ) :
"""
This route is used for domain work as Slave Zone only
Pulling the records update from its Master
"""
try :
2018-03-30 06:49:35 +00:00
jdata = request . json
2015-12-13 09:34:12 +00:00
domain_name = jdata [ ' domain ' ]
d = Domain ( )
result = d . update_from_master ( domain_name )
if result [ ' status ' ] == ' ok ' :
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : result [ ' msg ' ] } ) , 200 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : result [ ' msg ' ] } ) , 500 )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot update record. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2015-12-13 09:34:12 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Error when applying new changes ' } ) , 500 )
2018-04-12 04:18:44 +00:00
@app.route ( ' /domain/<path:domain_name>/info ' , methods = [ ' GET ' ] )
@login_required
@can_access_domain
def domain_info ( domain_name ) :
domain = Domain ( )
domain_info = domain . get_domain_info ( domain_name )
return make_response ( jsonify ( domain_info ) , 200 )
2018-03-30 23:52:14 +00:00
@app.route ( ' /domain/<path:domain_name>/dnssec ' , methods = [ ' GET ' ] )
2016-03-24 13:01:08 +00:00
@login_required
2018-04-02 06:38:53 +00:00
@can_access_domain
2016-03-24 13:01:08 +00:00
def domain_dnssec ( domain_name ) :
domain = Domain ( )
dnssec = domain . get_domain_dnssec ( domain_name )
return make_response ( jsonify ( dnssec ) , 200 )
2018-03-30 06:49:35 +00:00
2018-11-21 03:24:33 +00:00
@app.route ( ' /domain/<path:domain_name>/dnssec/enable ' , methods = [ ' POST ' ] )
2018-03-01 07:27:10 +00:00
@login_required
2018-04-02 06:38:53 +00:00
@can_access_domain
2018-06-07 02:28:14 +00:00
@can_configure_dnssec
2018-03-01 07:27:10 +00:00
def domain_dnssec_enable ( domain_name ) :
domain = Domain ( )
dnssec = domain . enable_domain_dnssec ( domain_name )
return make_response ( jsonify ( dnssec ) , 200 )
2018-04-02 06:38:53 +00:00
2018-11-21 03:24:33 +00:00
@app.route ( ' /domain/<path:domain_name>/dnssec/disable ' , methods = [ ' POST ' ] )
2018-03-01 07:27:10 +00:00
@login_required
2018-04-02 06:38:53 +00:00
@can_access_domain
2018-06-07 02:28:14 +00:00
@can_configure_dnssec
2018-03-01 07:27:10 +00:00
def domain_dnssec_disable ( domain_name ) :
domain = Domain ( )
dnssec = domain . get_domain_dnssec ( domain_name )
2018-03-05 14:06:40 +00:00
for key in dnssec [ ' dnssec ' ] :
2018-08-31 11:00:41 +00:00
domain . delete_dnssec_key ( domain_name , key [ ' id ' ] ) ;
2018-03-05 14:06:40 +00:00
2018-03-05 14:11:42 +00:00
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' DNSSEC removed. ' } ) )
2018-03-05 14:06:40 +00:00
2018-03-01 07:27:10 +00:00
2018-03-30 23:52:14 +00:00
@app.route ( ' /domain/<path:domain_name>/managesetting ' , methods = [ ' GET ' , ' POST ' ] )
2016-07-02 17:24:13 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2016-07-02 17:24:13 +00:00
def admin_setdomainsetting ( domain_name ) :
if request . method == ' POST ' :
#
# post data should in format
# {'action': 'set_setting', 'setting': 'default_action, 'value': 'True'}
#
try :
2018-03-30 06:49:35 +00:00
jdata = request . json
2016-07-02 17:24:13 +00:00
data = jdata [ ' data ' ]
2018-03-30 06:49:35 +00:00
2016-07-02 17:24:13 +00:00
if jdata [ ' action ' ] == ' set_setting ' :
new_setting = data [ ' setting ' ]
2016-07-03 04:30:16 +00:00
new_value = str ( data [ ' value ' ] )
2016-07-02 17:24:13 +00:00
domain = Domain . query . filter ( Domain . name == domain_name ) . first ( )
setting = DomainSetting . query . filter ( DomainSetting . domain == domain ) . filter ( DomainSetting . setting == new_setting ) . first ( )
2016-08-05 08:20:41 +00:00
2016-07-02 17:24:13 +00:00
if setting :
if setting . set ( new_value ) :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Setting {0} changed value to {1} for {2} ' . format ( new_setting , new_value , domain . name ) , created_by = current_user . username )
2016-07-02 17:24:13 +00:00
history . add ( )
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Setting updated. ' } ) )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Unable to set value of setting. ' } ) )
else :
if domain . add_setting ( new_setting , new_value ) :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' New setting {0} with value {1} for {2} has been created ' . format ( new_setting , new_value , domain . name ) , created_by = current_user . username )
2016-07-02 17:24:13 +00:00
history . add ( )
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' New setting created and updated. ' } ) )
else :
2016-08-05 08:20:41 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Unable to create new setting. ' } ) )
2016-07-02 17:24:13 +00:00
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Action not supported. ' } ) , 400 )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot change domain setting. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2016-07-02 17:24:13 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' There is something wrong, please contact Administrator. ' } ) , 400 )
2016-03-24 13:01:08 +00:00
2018-01-22 15:22:19 +00:00
@app.route ( ' /templates ' , methods = [ ' GET ' , ' POST ' ] )
@app.route ( ' /templates/list ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-01-22 15:22:19 +00:00
def templates ( ) :
templates = DomainTemplate . query . all ( )
return render_template ( ' template.html ' , templates = templates )
@app.route ( ' /template/create ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-01-22 15:22:19 +00:00
def create_template ( ) :
if request . method == ' GET ' :
return render_template ( ' template_add.html ' )
if request . method == ' POST ' :
try :
name = request . form . getlist ( ' name ' ) [ 0 ]
description = request . form . getlist ( ' description ' ) [ 0 ]
if ' ' in name or not name or not type :
flash ( " Please correct your input " , ' error ' )
return redirect ( url_for ( ' create_template ' ) )
if DomainTemplate . query . filter ( DomainTemplate . name == name ) . first ( ) :
2018-04-01 00:57:41 +00:00
flash ( " A template with the name {0} already exists! " . format ( name ) , ' error ' )
2018-01-22 15:22:19 +00:00
return redirect ( url_for ( ' create_template ' ) )
2018-08-31 11:00:41 +00:00
2018-01-22 15:22:19 +00:00
t = DomainTemplate ( name = name , description = description )
result = t . create ( )
if result [ ' status ' ] == ' ok ' :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Add domain template {0} ' . format ( name ) , detail = str ( { ' name ' : name , ' description ' : description } ) , created_by = current_user . username )
2018-01-22 15:22:19 +00:00
history . add ( )
return redirect ( url_for ( ' templates ' ) )
else :
flash ( result [ ' msg ' ] , ' error ' )
return redirect ( url_for ( ' create_template ' ) )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot create domain template. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2018-01-22 15:22:19 +00:00
return redirect ( url_for ( ' error ' , code = 500 ) )
2018-01-23 15:23:21 +00:00
@app.route ( ' /template/createfromzone ' , methods = [ ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-01-23 15:23:21 +00:00
def create_template_from_zone ( ) :
try :
2018-03-31 01:21:02 +00:00
jdata = request . json
2018-01-23 15:23:21 +00:00
name = jdata [ ' name ' ]
description = jdata [ ' description ' ]
domain_name = jdata [ ' domain ' ]
if ' ' in name or not name or not type :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Please correct template name ' } ) , 500 )
if DomainTemplate . query . filter ( DomainTemplate . name == name ) . first ( ) :
2018-04-01 00:57:41 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' A template with the name {0} already exists! ' . format ( name ) } ) , 500 )
2018-01-23 15:23:21 +00:00
t = DomainTemplate ( name = name , description = description )
result = t . create ( )
if result [ ' status ' ] == ' ok ' :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Add domain template {0} ' . format ( name ) , detail = str ( { ' name ' : name , ' description ' : description } ) , created_by = current_user . username )
2018-01-23 15:23:21 +00:00
history . add ( )
records = [ ]
r = Record ( )
domain = Domain . query . filter ( Domain . name == domain_name ) . first ( )
if domain :
# query domain info from PowerDNS API
zone_info = r . get_record_data ( domain . name )
if zone_info :
jrecords = zone_info [ ' records ' ]
2018-08-20 02:59:19 +00:00
if StrictVersion ( Setting ( ) . get ( ' pdns_version ' ) ) > = StrictVersion ( ' 4.0.0 ' ) :
2018-01-23 15:23:21 +00:00
for jr in jrecords :
2018-08-22 01:36:53 +00:00
if jr [ ' type ' ] in Setting ( ) . get_records_allow_to_edit ( ) :
2018-04-12 00:20:49 +00:00
name = ' @ ' if jr [ ' name ' ] == domain_name else re . sub ( ' \ . {} $ ' . format ( domain_name ) , ' ' , jr [ ' name ' ] )
2018-01-23 15:23:21 +00:00
for subrecord in jr [ ' records ' ] :
record = DomainTemplateRecord ( name = name , type = jr [ ' type ' ] , status = True if subrecord [ ' disabled ' ] else False , ttl = jr [ ' ttl ' ] , data = subrecord [ ' content ' ] )
records . append ( record )
else :
for jr in jrecords :
2018-08-22 01:36:53 +00:00
if jr [ ' type ' ] in Setting ( ) . get_records_allow_to_edit ( ) :
2018-04-12 00:20:49 +00:00
name = ' @ ' if jr [ ' name ' ] == domain_name else re . sub ( ' \ . {} $ ' . format ( domain_name ) , ' ' , jr [ ' name ' ] )
2018-01-23 15:23:21 +00:00
record = DomainTemplateRecord ( name = name , type = jr [ ' type ' ] , status = True if jr [ ' disabled ' ] else False , ttl = jr [ ' ttl ' ] , data = jr [ ' content ' ] )
records . append ( record )
2018-04-11 16:09:38 +00:00
2018-01-23 15:23:21 +00:00
result_records = t . replace_records ( records )
if result_records [ ' status ' ] == ' ok ' :
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : result [ ' msg ' ] } ) , 200 )
else :
2018-08-31 11:00:41 +00:00
t . delete_template ( )
2018-01-23 15:23:21 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : result_records [ ' msg ' ] } ) , 500 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : result [ ' msg ' ] } ) , 500 )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot create template from zone. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2018-01-23 15:23:21 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Error when applying new changes ' } ) , 500 )
2018-04-02 06:38:53 +00:00
@app.route ( ' /template/<path:template>/edit ' , methods = [ ' GET ' ] )
2018-01-22 15:22:19 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-01-22 15:22:19 +00:00
def edit_template ( template ) :
try :
t = DomainTemplate . query . filter ( DomainTemplate . name == template ) . first ( )
2018-08-22 01:36:53 +00:00
records_allow_to_edit = Setting ( ) . get_records_allow_to_edit ( )
2018-09-02 04:12:07 +00:00
quick_edit = Setting ( ) . get ( ' record_quick_edit ' )
2018-01-22 15:22:19 +00:00
if t is not None :
records = [ ]
for jr in t . records :
2018-08-22 01:36:53 +00:00
if jr . type in records_allow_to_edit :
2018-09-02 04:12:07 +00:00
record = DomainTemplateRecord ( name = jr . name , type = jr . type , status = ' Disabled ' if jr . status else ' Active ' , ttl = jr . ttl , data = jr . data )
records . append ( record )
2018-01-22 15:22:19 +00:00
2018-09-02 04:12:07 +00:00
return render_template ( ' template_edit.html ' , template = t . name , records = records , editable_records = records_allow_to_edit , quick_edit = quick_edit )
except Exception as e :
logging . error ( ' Cannot open domain template page. DETAIL: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2018-01-22 15:22:19 +00:00
return redirect ( url_for ( ' error ' , code = 500 ) )
return redirect ( url_for ( ' templates ' ) )
2018-04-02 06:38:53 +00:00
@app.route ( ' /template/<path:template>/apply ' , methods = [ ' POST ' ] , strict_slashes = False )
2018-01-22 15:22:19 +00:00
@login_required
def apply_records ( template ) :
try :
2018-03-31 01:21:02 +00:00
jdata = request . json
2018-01-22 15:22:19 +00:00
records = [ ]
2018-11-21 03:24:33 +00:00
for j in jdata [ ' records ' ] :
2018-01-22 15:22:19 +00:00
name = ' @ ' if j [ ' record_name ' ] in [ ' @ ' , ' ' ] else j [ ' record_name ' ]
type = j [ ' record_type ' ]
data = j [ ' record_data ' ]
disabled = True if j [ ' record_status ' ] == ' Disabled ' else False
ttl = int ( j [ ' record_ttl ' ] ) if j [ ' record_ttl ' ] else 3600
dtr = DomainTemplateRecord ( name = name , type = type , data = data , status = disabled , ttl = ttl )
records . append ( dtr )
t = DomainTemplate . query . filter ( DomainTemplate . name == template ) . first ( )
result = t . replace_records ( records )
if result [ ' status ' ] == ' ok ' :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Apply domain template record changes to domain template {0} ' . format ( template ) , detail = str ( jdata ) , created_by = current_user . username )
2018-01-22 15:22:19 +00:00
history . add ( )
return make_response ( jsonify ( result ) , 200 )
else :
return make_response ( jsonify ( result ) , 400 )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot apply record changes to the template. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2018-01-22 15:22:19 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Error when applying new changes ' } ) , 500 )
2018-11-21 03:24:33 +00:00
@app.route ( ' /template/<path:template>/delete ' , methods = [ ' POST ' ] )
2018-01-22 15:22:19 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-01-22 15:22:19 +00:00
def delete_template ( template ) :
try :
t = DomainTemplate . query . filter ( DomainTemplate . name == template ) . first ( )
if t is not None :
result = t . delete_template ( )
if result [ ' status ' ] == ' ok ' :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Deleted domain template {0} ' . format ( template ) , detail = str ( { ' name ' : template } ) , created_by = current_user . username )
2018-01-22 15:22:19 +00:00
history . add ( )
return redirect ( url_for ( ' templates ' ) )
else :
flash ( result [ ' msg ' ] , ' error ' )
return redirect ( url_for ( ' templates ' ) )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot delete template. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2018-01-22 15:22:19 +00:00
return redirect ( url_for ( ' error ' , code = 500 ) )
return redirect ( url_for ( ' templates ' ) )
2018-08-31 04:57:06 +00:00
@app.route ( ' /admin/pdns ' , methods = [ ' GET ' ] )
2015-12-13 09:34:12 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
def admin_pdns ( ) :
2018-08-20 02:59:19 +00:00
if not Setting ( ) . get ( ' pdns_api_url ' ) or not Setting ( ) . get ( ' pdns_api_key ' ) or not Setting ( ) . get ( ' pdns_version ' ) :
return redirect ( url_for ( ' admin_setting_pdns ' ) )
2015-12-13 09:34:12 +00:00
domains = Domain . query . all ( )
users = User . query . all ( )
2016-08-05 08:20:41 +00:00
2015-12-13 09:34:12 +00:00
server = Server ( server_id = ' localhost ' )
configs = server . get_config ( )
statistics = server . get_statistic ( )
history_number = History . query . count ( )
2016-08-05 08:20:41 +00:00
2015-12-13 09:34:12 +00:00
if statistics :
2018-03-30 06:49:35 +00:00
uptime = list ( [ uptime for uptime in statistics if uptime [ ' name ' ] == ' uptime ' ] ) [ 0 ] [ ' value ' ]
2015-12-13 09:34:12 +00:00
else :
uptime = 0
return render_template ( ' admin.html ' , domains = domains , users = users , configs = configs , statistics = statistics , uptime = uptime , history_number = history_number )
2018-03-30 06:49:35 +00:00
2018-08-12 09:40:32 +00:00
@app.route ( ' /admin/user/edit/<user_username> ' , methods = [ ' GET ' , ' POST ' ] )
@app.route ( ' /admin/user/edit ' , methods = [ ' GET ' , ' POST ' ] )
2016-05-15 20:29:15 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-08-12 09:40:32 +00:00
def admin_edituser ( user_username = None ) :
2016-05-15 20:29:15 +00:00
if request . method == ' GET ' :
2018-08-12 09:40:32 +00:00
if not user_username :
return render_template ( ' admin_edituser.html ' , create = 1 )
2016-08-05 08:20:41 +00:00
2018-08-12 09:40:32 +00:00
else :
user = User . query . filter ( User . username == user_username ) . first ( )
return render_template ( ' admin_edituser.html ' , user = user , create = 0 )
elif request . method == ' POST ' :
2016-05-15 20:29:15 +00:00
fdata = request . form
2016-08-05 08:20:41 +00:00
2018-08-12 09:40:32 +00:00
if not user_username :
user_username = fdata [ ' username ' ]
user = User ( username = user_username , plain_text_password = fdata [ ' password ' ] , firstname = fdata [ ' firstname ' ] , lastname = fdata [ ' lastname ' ] , email = fdata [ ' email ' ] , reload_info = False )
2016-08-05 08:20:41 +00:00
2018-08-12 09:40:32 +00:00
create = int ( fdata [ ' create ' ] )
if create :
if fdata [ ' password ' ] == " " :
return render_template ( ' admin_edituser.html ' , user = user , create = create , blank_password = True )
result = user . create_local_user ( )
history = History ( msg = ' Created user {0} ' . format ( user . username ) , created_by = current_user . username )
else :
result = user . update_local_user ( )
history = History ( msg = ' Updated user {0} ' . format ( user . username ) , created_by = current_user . username )
2016-08-05 08:20:41 +00:00
2018-03-30 10:43:34 +00:00
if result [ ' status ' ] :
2018-08-12 09:40:32 +00:00
history . add ( )
2018-03-30 10:43:34 +00:00
return redirect ( url_for ( ' admin_manageuser ' ) )
2016-08-05 08:20:41 +00:00
2018-08-12 09:40:32 +00:00
return render_template ( ' admin_edituser.html ' , user = user , create = create , error = result [ ' msg ' ] )
2015-12-13 09:34:12 +00:00
2018-03-30 06:49:35 +00:00
2015-12-13 09:34:12 +00:00
@app.route ( ' /admin/manageuser ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2015-12-13 09:34:12 +00:00
def admin_manageuser ( ) :
if request . method == ' GET ' :
2018-08-31 04:57:06 +00:00
roles = Role . query . all ( )
2016-05-15 20:29:15 +00:00
users = User . query . order_by ( User . username ) . all ( )
2018-08-31 04:57:06 +00:00
return render_template ( ' admin_manageuser.html ' , users = users , roles = roles )
2015-12-13 09:34:12 +00:00
if request . method == ' POST ' :
#
# post data should in format
# {'action': 'delete_user', 'data': 'username'}
#
try :
2018-03-30 06:49:35 +00:00
jdata = request . json
2015-12-13 09:34:12 +00:00
data = jdata [ ' data ' ]
2018-08-12 09:40:32 +00:00
if jdata [ ' action ' ] == ' user_otp_disable ' :
user = User ( username = data )
result = user . update_profile ( enable_otp = False )
if result :
history = History ( msg = ' Two factor authentication disabled for user {0} ' . format ( data ) , created_by = current_user . username )
history . add ( )
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Two factor authentication has been disabled for user. ' } ) , 200 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Cannot disable two factor authentication for user. ' } ) , 500 )
2015-12-13 09:34:12 +00:00
if jdata [ ' action ' ] == ' delete_user ' :
user = User ( username = data )
2018-06-07 17:26:54 +00:00
if user . username == current_user . username :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' You cannot delete yourself. ' } ) , 400 )
2015-12-13 09:34:12 +00:00
result = user . delete ( )
if result :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' Delete username {0} ' . format ( data ) , created_by = current_user . username )
2015-12-13 09:34:12 +00:00
history . add ( )
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' User has been removed. ' } ) , 200 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Cannot remove user. ' } ) , 500 )
2016-08-05 08:20:41 +00:00
2018-10-02 07:23:41 +00:00
elif jdata [ ' action ' ] == ' revoke_user_privileges ' :
2015-12-13 09:34:12 +00:00
user = User ( username = data )
result = user . revoke_privilege ( )
if result :
2018-10-02 07:23:41 +00:00
history = History ( msg = ' Revoke {0} user privileges ' . format ( data ) , created_by = current_user . username )
2015-12-13 09:34:12 +00:00
history . add ( )
2018-10-02 07:23:41 +00:00
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Revoked user privileges. ' } ) , 200 )
2015-12-13 09:34:12 +00:00
else :
2016-08-05 08:20:41 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Cannot revoke user privilege. ' } ) , 500 )
2018-08-31 04:57:06 +00:00
elif jdata [ ' action ' ] == ' update_user_role ' :
2015-12-13 09:34:12 +00:00
username = data [ ' username ' ]
2018-08-31 04:57:06 +00:00
role_name = data [ ' role_name ' ]
2018-06-06 11:14:48 +00:00
if username == current_user . username :
2018-08-31 04:57:06 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' You cannot change you own roles. ' } ) , 400 )
user = User . query . filter ( User . username == username ) . first ( )
if not user :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' User does not exist. ' } ) , 404 )
if user . role . name == ' Administrator ' and current_user . role . name != ' Administrator ' :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' You do not have permission to change Administrator users role. ' } ) , 400 )
if role_name == ' Administrator ' and current_user . role . name != ' Administrator ' :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' You do not have permission to promote a user to Administrator role. ' } ) , 400 )
2015-12-13 09:34:12 +00:00
user = User ( username = username )
2018-08-31 04:57:06 +00:00
result = user . set_role ( role_name )
if result [ ' status ' ] :
history = History ( msg = ' Change user role of {0} to {1} ' . format ( username , role_name ) , created_by = current_user . username )
2015-12-13 09:34:12 +00:00
history . add ( )
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Changed user role successfully. ' } ) , 200 )
else :
2018-08-31 04:57:06 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Cannot change user role. {0} ' . format ( result [ ' msg ' ] ) } ) , 500 )
2015-12-13 09:34:12 +00:00
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Action not supported. ' } ) , 400 )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot update user. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2015-12-13 09:34:12 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' There is something wrong, please contact Administrator. ' } ) , 400 )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
@app.route ( ' /admin/account/edit/<account_name> ' , methods = [ ' GET ' , ' POST ' ] )
@app.route ( ' /admin/account/edit ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
def admin_editaccount ( account_name = None ) :
2018-06-05 18:41:39 +00:00
users = User . query . all ( )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
if request . method == ' GET ' :
if account_name is None :
2018-06-05 18:41:39 +00:00
return render_template ( ' admin_editaccount.html ' , users = users , create = 1 )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
else :
account = Account . query . filter ( Account . name == account_name ) . first ( )
2018-06-05 18:41:39 +00:00
account_user_ids = account . get_user ( )
return render_template ( ' admin_editaccount.html ' , account = account , account_user_ids = account_user_ids , users = users , create = 0 )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
if request . method == ' POST ' :
fdata = request . form
2018-06-05 18:41:39 +00:00
new_user_list = request . form . getlist ( ' account_multi_user ' )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
2018-06-05 18:41:39 +00:00
# on POST, synthesize account and account_user_ids from form data
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
if not account_name :
account_name = fdata [ ' accountname ' ]
2018-06-05 18:41:39 +00:00
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
account = Account ( name = account_name , description = fdata [ ' accountdescription ' ] , contact = fdata [ ' accountcontact ' ] , mail = fdata [ ' accountmail ' ] )
2018-06-05 18:41:39 +00:00
account_user_ids = [ ]
for username in new_user_list :
userid = User ( username = username ) . get_user_info_by_username ( ) . id
account_user_ids . append ( userid )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
create = int ( fdata [ ' create ' ] )
if create :
# account __init__ sanitizes and lowercases the name, so to manage expectations
# we let the user reenter the name until it's not empty and it's valid (ignoring the case)
if account . name == " " or account . name != account_name . lower ( ) :
2018-06-05 18:41:39 +00:00
return render_template ( ' admin_editaccount.html ' , account = account , account_user_ids = account_user_ids , users = users , create = create , invalid_accountname = True )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
2018-06-05 18:41:39 +00:00
if Account . query . filter ( Account . name == account . name ) . first ( ) :
return render_template ( ' admin_editaccount.html ' , account = account , account_user_ids = account_user_ids , users = users , create = create , duplicate_accountname = True )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
result = account . create_account ( )
history = History ( msg = ' Create account {0} ' . format ( account . name ) , created_by = current_user . username )
else :
result = account . update_account ( )
history = History ( msg = ' Update account {0} ' . format ( account . name ) , created_by = current_user . username )
if result [ ' status ' ] :
2018-06-05 18:41:39 +00:00
account . grant_privileges ( new_user_list )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
history . add ( )
return redirect ( url_for ( ' admin_manageaccount ' ) )
2018-06-05 18:41:39 +00:00
return render_template ( ' admin_editaccount.html ' , account = account , account_user_ids = account_user_ids , users = users , create = create , error = result [ ' msg ' ] )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
@app.route ( ' /admin/manageaccount ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
def admin_manageaccount ( ) :
if request . method == ' GET ' :
accounts = Account . query . order_by ( Account . name ) . all ( )
return render_template ( ' admin_manageaccount.html ' , accounts = accounts )
if request . method == ' POST ' :
#
# post data should in format
# {'action': 'delete_account', 'data': 'accountname'}
#
try :
jdata = request . json
data = jdata [ ' data ' ]
if jdata [ ' action ' ] == ' delete_account ' :
account = Account ( name = data )
result = account . delete_account ( )
if result :
history = History ( msg = ' Delete account {0} ' . format ( data ) , created_by = current_user . username )
history . add ( )
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Account has been removed. ' } ) , 200 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Cannot remove account. ' } ) , 500 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Action not supported. ' } ) , 400 )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' Cannot update account. Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
Initial support for Accounts
This adds initial support for accounts a concept meant to signify a customer, a department or any other entity that somehow owns or manages one or more domains.
The purpose is to be able to assign an account to any number of domains, making it easy to track who owns or manages a domain, significantly improving manageability in setups with a large number of domains.
An account consists of a mandatory, unique `name` and optional `description`, `contact` name and `mail` address. The account `name` is stripped of spaces and symbols, and lower cased before getting stored in the database and in PowerDNS, to help ensure some type of predictability and uniqueness in the database.
The term *account* is actually taken from the PowerDNS database, where the `domains.account` column is used to store the account relationship, in in the form of the account `name`.
The link to a domain in PowerDNS-Admin is done through the `domain.account_id` FOREIGN KEY, that is linked to the `account.id` PRIMARY KEY.
(cherry picked from commits 4e95f33dfb0676d1c401a033c28bca3be7d6ec26, da0d596bd019a339549e2c59630a8fdee65d0e22, 7f06e6aaf4fd8011c784f24b7bbbba5f52aef319, 1c624dad8749024033d1d15dd6242ca52b39f135)
2018-06-04 15:10:02 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' There is something wrong, please contact Administrator. ' } ) , 400 )
2015-12-13 09:34:12 +00:00
@app.route ( ' /admin/history ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2015-12-13 09:34:12 +00:00
def admin_history ( ) :
if request . method == ' POST ' :
2018-09-04 10:58:13 +00:00
if current_user . role . name != ' Administrator ' :
2018-09-04 06:02:19 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' You do not have permission to remove history. ' } ) , 401 )
2015-12-13 09:34:12 +00:00
h = History ( )
result = h . remove_all ( )
if result :
history = History ( msg = ' Remove all histories ' , created_by = current_user . username )
history . add ( )
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Changed user role successfully. ' } ) , 200 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Can not remove histories. ' } ) , 500 )
2016-08-05 08:20:41 +00:00
if request . method == ' GET ' :
2015-12-13 09:34:12 +00:00
histories = History . query . all ( )
return render_template ( ' admin_history.html ' , histories = histories )
2018-03-30 06:49:35 +00:00
2018-08-18 11:41:59 +00:00
@app.route ( ' /admin/setting/basic ' , methods = [ ' GET ' ] )
2016-04-29 21:36:37 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-08-18 11:41:59 +00:00
def admin_setting_basic ( ) :
2016-08-05 08:20:41 +00:00
if request . method == ' GET ' :
2018-09-03 10:27:09 +00:00
settings = [ ' maintenance ' ,
' fullscreen_layout ' ,
' record_helper ' ,
' login_ldap_first ' ,
' default_record_table_size ' ,
' default_domain_table_size ' ,
' auto_ptr ' ,
' record_quick_edit ' ,
' pretty_ipv6_ptr ' ,
' dnssec_admins_only ' ,
' allow_user_create_domain ' ,
' bg_domain_updates ' ,
2018-10-02 06:01:04 +00:00
' site_name ' ,
2018-11-24 12:45:14 +00:00
' session_timeout ' ,
' ttl_options ' ]
2018-09-03 10:27:09 +00:00
2018-08-18 11:41:59 +00:00
return render_template ( ' admin_setting_basic.html ' , settings = settings )
Move setting definitions into code (rather than database).
For a setting to be useful, the code has to be able to make sense of it anyway. For this reason it makes sense, that the available settings are defined within the code, rather than in the database, where a missing row has previously caused problems. Instead, settings are now written to the database, when they are changed.
So instead of relying on the database initialization process to create all available settings for us in the database, the supported settings and their defaults are now in a `defaults` dict in the Setting class. With this in place, we can stop populating the `setting` table as a part of database initialization and it will be much easier to support new settings in the future (we no longer need to do anything to the database, to achieve that).
Another benefit is that any changes to default values will take effect automatically, unless the admin has already modified that setting to his/her liking.
To make it easier to get the value of a setting, falling back to defaults etc, a new function `get` has been added to the Setting class. Call it as `Setting().get('setting_name'), and it will take care of returning a setting from the database or return the default value for that setting, if nothing was found.
The `get` function returns `None`, if the setting passed to the function, does not exist in the `Setting.defaults` dict - Indicating that we don't know of a setting by that name.
2018-06-21 23:56:51 +00:00
2016-08-05 08:20:41 +00:00
2018-08-18 11:41:59 +00:00
@app.route ( ' /admin/setting/basic/<path:setting>/edit ' , methods = [ ' POST ' ] )
2016-04-29 21:36:37 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-08-18 11:41:59 +00:00
def admin_setting_basic_edit ( setting ) :
jdata = request . json
new_value = jdata [ ' value ' ]
result = Setting ( ) . set ( setting , new_value )
2016-04-29 21:36:37 +00:00
if ( result ) :
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Toggled setting successfully. ' } ) , 200 )
else :
2016-05-15 18:47:02 +00:00
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Unable to toggle setting. ' } ) , 500 )
2015-12-13 09:34:12 +00:00
2018-03-30 06:49:35 +00:00
2018-08-18 11:41:59 +00:00
@app.route ( ' /admin/setting/basic/<path:setting>/toggle ' , methods = [ ' POST ' ] )
2016-06-09 01:23:08 +00:00
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-08-18 11:41:59 +00:00
def admin_setting_basic_toggle ( setting ) :
result = Setting ( ) . toggle ( setting )
2016-06-09 01:23:08 +00:00
if ( result ) :
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Toggled setting successfully. ' } ) , 200 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' Unable to toggle setting. ' } ) , 500 )
2018-03-30 06:49:35 +00:00
2018-08-18 11:41:59 +00:00
@app.route ( ' /admin/setting/pdns ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
@admin_role_required
def admin_setting_pdns ( ) :
if request . method == ' GET ' :
pdns_api_url = Setting ( ) . get ( ' pdns_api_url ' )
pdns_api_key = Setting ( ) . get ( ' pdns_api_key ' )
pdns_version = Setting ( ) . get ( ' pdns_version ' )
return render_template ( ' admin_setting_pdns.html ' , pdns_api_url = pdns_api_url , pdns_api_key = pdns_api_key , pdns_version = pdns_version )
elif request . method == ' POST ' :
pdns_api_url = request . form . get ( ' pdns_api_url ' )
pdns_api_key = request . form . get ( ' pdns_api_key ' )
pdns_version = request . form . get ( ' pdns_version ' )
Setting ( ) . set ( ' pdns_api_url ' , pdns_api_url )
Setting ( ) . set ( ' pdns_api_key ' , pdns_api_key )
Setting ( ) . set ( ' pdns_version ' , pdns_version )
return render_template ( ' admin_setting_pdns.html ' , pdns_api_url = pdns_api_url , pdns_api_key = pdns_api_key , pdns_version = pdns_version )
2018-08-22 01:36:53 +00:00
@app.route ( ' /admin/setting/dns-records ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
2018-08-31 04:57:06 +00:00
@operator_role_required
2018-08-22 01:36:53 +00:00
def admin_setting_records ( ) :
if request . method == ' GET ' :
2018-09-03 10:27:09 +00:00
_fr = Setting ( ) . get ( ' forward_records_allow_edit ' )
_rr = Setting ( ) . get ( ' reverse_records_allow_edit ' )
f_records = literal_eval ( _fr ) if isinstance ( _fr , str ) else _fr
r_records = literal_eval ( _rr ) if isinstance ( _rr , str ) else _rr
2018-08-22 01:36:53 +00:00
return render_template ( ' admin_setting_records.html ' , f_records = f_records , r_records = r_records )
elif request . method == ' POST ' :
fr = { }
rr = { }
records = Setting ( ) . defaults [ ' forward_records_allow_edit ' ]
for r in records :
fr [ r ] = True if request . form . get ( ' fr_ {0} ' . format ( r . lower ( ) ) ) else False
rr [ r ] = True if request . form . get ( ' rr_ {0} ' . format ( r . lower ( ) ) ) else False
Setting ( ) . set ( ' forward_records_allow_edit ' , str ( fr ) )
Setting ( ) . set ( ' reverse_records_allow_edit ' , str ( rr ) )
return redirect ( url_for ( ' admin_setting_records ' ) )
2018-08-18 11:41:59 +00:00
@app.route ( ' /admin/setting/authentication ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
@admin_role_required
def admin_setting_authentication ( ) :
if request . method == ' GET ' :
return render_template ( ' admin_setting_authentication.html ' )
elif request . method == ' POST ' :
conf_type = request . form . get ( ' config_tab ' )
2018-08-19 15:08:14 +00:00
result = None
2018-08-18 11:41:59 +00:00
if conf_type == ' general ' :
local_db_enabled = True if request . form . get ( ' local_db_enabled ' ) else False
signup_enabled = True if request . form . get ( ' signup_enabled ' , ) else False
2018-08-19 15:08:14 +00:00
if not local_db_enabled and not Setting ( ) . get ( ' ldap_enabled ' ) :
result = { ' status ' : False , ' msg ' : ' Local DB and LDAP Authentication can not be disabled at the same time. ' }
else :
Setting ( ) . set ( ' local_db_enabled ' , local_db_enabled )
Setting ( ) . set ( ' signup_enabled ' , signup_enabled )
result = { ' status ' : True , ' msg ' : ' Saved successfully ' }
2018-08-18 11:41:59 +00:00
elif conf_type == ' ldap ' :
2018-08-19 15:08:14 +00:00
ldap_enabled = True if request . form . get ( ' ldap_enabled ' ) else False
if not ldap_enabled and not Setting ( ) . get ( ' local_db_enabled ' ) :
result = { ' status ' : False , ' msg ' : ' Local DB and LDAP Authentication can not be disabled at the same time. ' }
else :
Setting ( ) . set ( ' ldap_enabled ' , ldap_enabled )
Setting ( ) . set ( ' ldap_type ' , request . form . get ( ' ldap_type ' ) )
Setting ( ) . set ( ' ldap_uri ' , request . form . get ( ' ldap_uri ' ) )
Setting ( ) . set ( ' ldap_base_dn ' , request . form . get ( ' ldap_base_dn ' ) )
Setting ( ) . set ( ' ldap_admin_username ' , request . form . get ( ' ldap_admin_username ' ) )
Setting ( ) . set ( ' ldap_admin_password ' , request . form . get ( ' ldap_admin_password ' ) )
Setting ( ) . set ( ' ldap_filter_basic ' , request . form . get ( ' ldap_filter_basic ' ) )
Setting ( ) . set ( ' ldap_filter_username ' , request . form . get ( ' ldap_filter_username ' ) )
Setting ( ) . set ( ' ldap_sg_enabled ' , True if request . form . get ( ' ldap_sg_enabled ' ) == ' ON ' else False )
Setting ( ) . set ( ' ldap_admin_group ' , request . form . get ( ' ldap_admin_group ' ) )
2018-08-31 04:57:06 +00:00
Setting ( ) . set ( ' ldap_operator_group ' , request . form . get ( ' ldap_operator_group ' ) )
2018-08-19 15:08:14 +00:00
Setting ( ) . set ( ' ldap_user_group ' , request . form . get ( ' ldap_user_group ' ) )
2018-09-12 15:28:05 +00:00
Setting ( ) . set ( ' ldap_domain ' , request . form . get ( ' ldap_domain ' ) )
2018-08-19 15:08:14 +00:00
result = { ' status ' : True , ' msg ' : ' Saved successfully ' }
2018-08-18 11:41:59 +00:00
elif conf_type == ' google ' :
Setting ( ) . set ( ' google_oauth_enabled ' , True if request . form . get ( ' google_oauth_enabled ' ) else False )
Setting ( ) . set ( ' google_oauth_client_id ' , request . form . get ( ' google_oauth_client_id ' ) )
Setting ( ) . set ( ' google_oauth_client_secret ' , request . form . get ( ' google_oauth_client_secret ' ) )
Setting ( ) . set ( ' google_token_url ' , request . form . get ( ' google_token_url ' ) )
2018-10-22 01:33:46 +00:00
Setting ( ) . set ( ' google_oauth_scope ' , request . form . get ( ' google_oauth_scope ' ) )
2018-08-18 11:41:59 +00:00
Setting ( ) . set ( ' google_authorize_url ' , request . form . get ( ' google_authorize_url ' ) )
Setting ( ) . set ( ' google_base_url ' , request . form . get ( ' google_base_url ' ) )
2018-08-23 02:23:21 +00:00
result = { ' status ' : True , ' msg ' : ' Saved successfully. Please reload PDA to take effect. ' }
2018-08-18 11:41:59 +00:00
elif conf_type == ' github ' :
Setting ( ) . set ( ' github_oauth_enabled ' , True if request . form . get ( ' github_oauth_enabled ' ) else False )
Setting ( ) . set ( ' github_oauth_key ' , request . form . get ( ' github_oauth_key ' ) )
Setting ( ) . set ( ' github_oauth_secret ' , request . form . get ( ' github_oauth_secret ' ) )
Setting ( ) . set ( ' github_oauth_scope ' , request . form . get ( ' github_oauth_scope ' ) )
Setting ( ) . set ( ' github_oauth_api_url ' , request . form . get ( ' github_oauth_api_url ' ) )
Setting ( ) . set ( ' github_oauth_token_url ' , request . form . get ( ' github_oauth_token_url ' ) )
Setting ( ) . set ( ' github_oauth_authorize_url ' , request . form . get ( ' github_oauth_authorize_url ' ) )
2018-08-23 02:23:21 +00:00
result = { ' status ' : True , ' msg ' : ' Saved successfully. Please reload PDA to take effect. ' }
2018-10-21 22:38:12 +00:00
elif conf_type == ' oidc ' :
Setting ( ) . set ( ' oidc_oauth_enabled ' , True if request . form . get ( ' oidc_oauth_enabled ' ) else False )
Setting ( ) . set ( ' oidc_oauth_key ' , request . form . get ( ' oidc_oauth_key ' ) )
Setting ( ) . set ( ' oidc_oauth_secret ' , request . form . get ( ' oidc_oauth_secret ' ) )
Setting ( ) . set ( ' oidc_oauth_scope ' , request . form . get ( ' oidc_oauth_scope ' ) )
Setting ( ) . set ( ' oidc_oauth_api_url ' , request . form . get ( ' oidc_oauth_api_url ' ) )
Setting ( ) . set ( ' oidc_oauth_token_url ' , request . form . get ( ' oidc_oauth_token_url ' ) )
Setting ( ) . set ( ' oidc_oauth_authorize_url ' , request . form . get ( ' oidc_oauth_authorize_url ' ) )
result = { ' status ' : True , ' msg ' : ' Saved successfully. Please reload PDA to take effect. ' }
2018-08-18 11:41:59 +00:00
else :
return abort ( 400 )
2018-08-19 15:08:14 +00:00
return render_template ( ' admin_setting_authentication.html ' , result = result )
2018-08-18 11:41:59 +00:00
2015-12-16 07:21:30 +00:00
@app.route ( ' /user/profile ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
def user_profile ( ) :
2018-08-22 02:43:33 +00:00
if request . method == ' GET ' :
return render_template ( ' user_profile.html ' )
2015-12-16 07:21:30 +00:00
if request . method == ' POST ' :
2018-08-22 02:43:33 +00:00
if session [ ' authentication_type ' ] == ' LOCAL ' :
firstname = request . form [ ' firstname ' ] if ' firstname ' in request . form else ' '
lastname = request . form [ ' lastname ' ] if ' lastname ' in request . form else ' '
email = request . form [ ' email ' ] if ' email ' in request . form else ' '
new_password = request . form [ ' password ' ] if ' password ' in request . form else ' '
else :
firstname = lastname = email = new_password = ' '
logging . warning ( ' Authenticated externally. User {0} information will not allowed to update the profile ' . format ( current_user . username ) )
2015-12-16 07:21:30 +00:00
2016-06-16 08:33:05 +00:00
if request . data :
2018-03-30 06:49:35 +00:00
jdata = request . json
2016-06-16 08:33:05 +00:00
data = jdata [ ' data ' ]
if jdata [ ' action ' ] == ' enable_otp ' :
2018-08-22 02:43:33 +00:00
if session [ ' authentication_type ' ] in [ ' LOCAL ' , ' LDAP ' ] :
enable_otp = data [ ' enable_otp ' ]
user = User ( username = current_user . username )
user . update_profile ( enable_otp = enable_otp )
return make_response ( jsonify ( { ' status ' : ' ok ' , ' msg ' : ' Change OTP Authentication successfully. Status: {0} ' . format ( enable_otp ) } ) , 200 )
else :
return make_response ( jsonify ( { ' status ' : ' error ' , ' msg ' : ' User {0} is externally. You are not allowed to update the OTP ' . format ( current_user . username ) } ) , 400 )
2016-06-16 08:33:05 +00:00
2015-12-16 17:50:28 +00:00
# get new avatar
save_file_name = None
if ' file ' in request . files :
2018-08-22 02:43:33 +00:00
if session [ ' authentication_type ' ] in [ ' LOCAL ' , ' LDAP ' ] :
file = request . files [ ' file ' ]
if file :
filename = secure_filename ( file . filename )
file_extension = filename . rsplit ( ' . ' , 1 ) [ 1 ]
if file_extension . lower ( ) in [ ' jpg ' , ' jpeg ' , ' png ' ] :
save_file_name = current_user . username + ' . ' + file_extension
file . save ( os . path . join ( app . config [ ' UPLOAD_DIR ' ] , ' avatar ' , save_file_name ) )
else :
logging . error ( ' Authenticated externally. User {0} is not allowed to update the avatar ' )
abort ( 400 )
2015-12-16 17:50:28 +00:00
user = User ( username = current_user . username , plain_text_password = new_password , firstname = firstname , lastname = lastname , email = email , avatar = save_file_name , reload_info = False )
2015-12-16 07:21:30 +00:00
user . update_profile ( )
2015-12-16 17:50:28 +00:00
2018-08-22 02:43:33 +00:00
return render_template ( ' user_profile.html ' )
2015-12-16 07:21:30 +00:00
2015-12-16 17:50:28 +00:00
2018-03-30 23:52:14 +00:00
@app.route ( ' /user/avatar/<path:filename> ' )
2015-12-16 17:50:28 +00:00
def user_avatar ( filename ) :
return send_from_directory ( os . path . join ( app . config [ ' UPLOAD_DIR ' ] , ' avatar ' ) , filename )
2016-06-16 08:33:05 +00:00
@app.route ( ' /qrcode ' )
@login_required
def qrcode ( ) :
if not current_user :
return redirect ( url_for ( ' index ' ) )
# render qrcode for FreeTOTP
2018-11-12 09:00:38 +00:00
img = qrc . make ( current_user . get_totp_uri ( ) , image_factory = qrc_svg . SvgPathImage )
2016-06-16 08:33:05 +00:00
stream = BytesIO ( )
2016-09-17 13:41:22 +00:00
img . save ( stream )
2016-06-16 08:33:05 +00:00
return stream . getvalue ( ) , 200 , {
' Content-Type ' : ' image/svg+xml ' ,
' Cache-Control ' : ' no-cache, no-store, must-revalidate ' ,
' Pragma ' : ' no-cache ' ,
' Expires ' : ' 0 ' }
2016-06-20 09:32:14 +00:00
@app.route ( ' /nic/checkip.html ' , methods = [ ' GET ' , ' POST ' ] )
2018-11-21 03:24:33 +00:00
@csrf.exempt
2016-06-20 09:32:14 +00:00
def dyndns_checkip ( ) :
# route covers the default ddclient 'web' setting for the checkip service
2016-07-01 22:02:37 +00:00
return render_template ( ' dyndns.html ' , response = request . environ . get ( ' HTTP_X_REAL_IP ' , request . remote_addr ) )
2016-06-20 09:32:14 +00:00
2018-03-30 06:49:35 +00:00
2016-06-20 09:32:14 +00:00
@app.route ( ' /nic/update ' , methods = [ ' GET ' , ' POST ' ] )
@dyndns_login_required
2018-11-21 03:24:33 +00:00
@csrf.exempt
2016-06-20 09:32:14 +00:00
def dyndns_update ( ) :
# dyndns protocol response codes in use are:
# good: update successful
# nochg: IP address already set to update address
# nohost: hostname does not exist for this user account
# 911: server error
# have to use 200 HTTP return codes because ddclient does not read the return string if the code is other than 200
# reference: https://help.dyn.com/remote-access-api/perform-update/
# reference: https://help.dyn.com/remote-access-api/return-codes/
hostname = request . args . get ( ' hostname ' )
myip = request . args . get ( ' myip ' )
try :
# get all domains owned by the current user
domains = User ( id = current_user . id ) . get_domain ( )
2018-09-06 04:35:54 +00:00
except Exception as e :
logging . error ( ' DynDNS Error: {0} ' . format ( e ) )
logging . debug ( traceback . format_exc ( ) )
2016-06-20 09:32:14 +00:00
return render_template ( ' dyndns.html ' , response = ' 911 ' ) , 200
2016-08-05 08:20:41 +00:00
2016-07-02 17:24:13 +00:00
domain = None
domain_segments = hostname . split ( ' . ' )
for index in range ( len ( domain_segments ) ) :
full_domain = ' . ' . join ( domain_segments )
potential_domain = Domain . query . filter ( Domain . name == full_domain ) . first ( )
if potential_domain in domains :
domain = potential_domain
break
2016-08-18 20:05:15 +00:00
domain_segments . pop ( 0 )
2016-08-05 08:20:41 +00:00
2016-07-02 17:24:13 +00:00
if not domain :
2018-04-01 00:57:41 +00:00
history = History ( msg = " DynDNS update: attempted update of {0} but it does not exist for this user " . format ( hostname ) , created_by = current_user . username )
2016-07-02 17:24:13 +00:00
history . add ( )
return render_template ( ' dyndns.html ' , response = ' nohost ' ) , 200
2016-08-05 08:20:41 +00:00
2016-07-02 17:24:13 +00:00
r = Record ( )
r . name = hostname
# check if the user requested record exists within this domain
2018-01-23 09:08:50 +00:00
if r . exists ( domain . name ) and r . is_allowed_edit ( ) :
2016-07-02 17:24:13 +00:00
if r . data == myip :
# record content did not change, return 'nochg'
2018-04-01 00:57:41 +00:00
history = History ( msg = " DynDNS update: attempted update of {0} but record did not change " . format ( hostname ) , created_by = current_user . username )
2016-07-02 17:24:13 +00:00
history . add ( )
return render_template ( ' dyndns.html ' , response = ' nochg ' ) , 200
else :
oldip = r . data
result = r . update ( domain . name , myip )
if result [ ' status ' ] == ' ok ' :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' DynDNS update: updated record {0} in zone {1} , it changed from {2} to {3} ' . format ( hostname , domain . name , oldip , myip ) , detail = str ( result ) , created_by = current_user . username )
2016-06-20 09:32:14 +00:00
history . add ( )
2016-07-02 17:24:13 +00:00
return render_template ( ' dyndns.html ' , response = ' good ' ) , 200
2016-06-20 09:32:14 +00:00
else :
2016-07-02 17:24:13 +00:00
return render_template ( ' dyndns.html ' , response = ' 911 ' ) , 200
2018-01-23 09:08:50 +00:00
elif r . is_allowed_edit ( ) :
2016-07-02 17:24:13 +00:00
ondemand_creation = DomainSetting . query . filter ( DomainSetting . domain == domain ) . filter ( DomainSetting . setting == ' create_via_dyndns ' ) . first ( )
2016-07-03 18:42:14 +00:00
if ( ondemand_creation != None ) and ( strtobool ( ondemand_creation . value ) == True ) :
2016-07-03 00:36:21 +00:00
record = Record ( name = hostname , type = ' A ' , data = myip , status = False , ttl = 3600 )
2016-07-02 17:24:13 +00:00
result = record . add ( domain . name )
if result [ ' status ' ] == ' ok ' :
2018-04-01 00:57:41 +00:00
history = History ( msg = ' DynDNS update: created record {0} in zone {1} , it now represents {2} ' . format ( hostname , domain . name , myip ) , detail = str ( result ) , created_by = current_user . username )
2016-07-02 17:24:13 +00:00
history . add ( )
return render_template ( ' dyndns.html ' , response = ' good ' ) , 200
2016-08-05 08:20:41 +00:00
2018-04-01 00:57:41 +00:00
history = History ( msg = ' DynDNS update: attempted update of {0} but it does not exist for this user ' . format ( hostname ) , created_by = current_user . username )
2016-06-20 09:32:14 +00:00
history . add ( )
return render_template ( ' dyndns.html ' , response = ' nohost ' ) , 200
2015-12-13 09:34:12 +00:00
@app.route ( ' / ' , methods = [ ' GET ' , ' POST ' ] )
@login_required
def index ( ) :
2016-08-05 08:20:41 +00:00
return redirect ( url_for ( ' dashboard ' ) )
2015-12-13 09:34:12 +00:00
# END VIEWS