''' Onionr - Private P2P Communication Register static file routes ''' ''' This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ''' import os from flask import Blueprint, send_from_directory static_files_bp = Blueprint('staticfiles', __name__) root = os.getcwd() + '/static-data/www/' # should be set to onionr install directory from onionr startup @static_files_bp.route('/board/', endpoint='board') def loadBoard(): return send_from_directory(root + 'board/', "index.html") @static_files_bp.route('/mail/', endpoint='mail') def loadMail(path): return send_from_directory(root + 'mail/', path) @static_files_bp.route('/mail/', endpoint='mailindex') def loadMailIndex(): return send_from_directory(root + 'mail/', 'index.html') @static_files_bp.route('/friends/', endpoint='friends') def loadContacts(path): return send_from_directory(root + 'friends/', path) @static_files_bp.route('/friends/', endpoint='friendsindex') def loadContacts(): return send_from_directory(root + 'friends/', 'index.html') @static_files_bp.route('/profiles/', endpoint='profiles') def loadContacts(path): return send_from_directory(root + 'profiles/', path) @static_files_bp.route('/profiles/', endpoint='profilesindex') def loadContacts(): return send_from_directory(root + 'profiles/', 'index.html') @static_files_bp.route('/board/', endpoint='boardContent') def boardContent(path): return send_from_directory(root + 'board/', path) @static_files_bp.route('/shared/', endpoint='sharedContent') def sharedContent(path): return send_from_directory(root + 'shared/', path) @static_files_bp.route('/', endpoint='onionrhome') def hello(): # ui home return send_from_directory(root + 'private/', 'index.html') @static_files_bp.route('/private/', endpoint='homedata') def homedata(path): return send_from_directory(root + 'private/', path)