2013-04-23 12:54:21 -05:00
|
|
|
# Authors: Petr Vobornik <pvoborni@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2013 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
"""
|
|
|
|
Plugin index generation script
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
2014-05-29 07:47:17 -05:00
|
|
|
from ipaplatform.paths import paths
|
2013-04-23 12:54:21 -05:00
|
|
|
from ipapython.ipa_log_manager import root_logger
|
|
|
|
|
|
|
|
def get_plugin_index():
|
|
|
|
|
2014-10-03 18:27:57 -05:00
|
|
|
if not os.path.isdir(paths.IPA_JS_PLUGINS_DIR):
|
2013-04-23 12:54:21 -05:00
|
|
|
raise Exception("Supplied plugin directory path is not a directory")
|
|
|
|
|
2014-10-03 18:27:57 -05:00
|
|
|
dirs = os.listdir(paths.IPA_JS_PLUGINS_DIR)
|
2013-04-23 12:54:21 -05:00
|
|
|
index = 'define([],function(){return['
|
|
|
|
index += ','.join("'"+x+"'" for x in dirs)
|
|
|
|
index += '];});'
|
2017-06-27 06:22:00 -05:00
|
|
|
return index.encode('utf-8')
|
2013-04-23 12:54:21 -05:00
|
|
|
|
|
|
|
def get_failed():
|
2017-06-27 06:22:00 -05:00
|
|
|
return (
|
|
|
|
b'define([],function(){return[];});/*error occured: serving default */'
|
|
|
|
)
|
2013-04-23 12:54:21 -05:00
|
|
|
|
|
|
|
def application(environ, start_response):
|
|
|
|
try:
|
|
|
|
index = get_plugin_index()
|
|
|
|
status = '200 OK'
|
2015-07-30 09:49:29 -05:00
|
|
|
except Exception as e:
|
2013-04-23 12:54:21 -05:00
|
|
|
root_logger.error('plugin index generation failed: %s' % e)
|
|
|
|
status = '200 OK'
|
|
|
|
index = get_failed()
|
|
|
|
headers = [('Content-type', 'application/javascript'),
|
|
|
|
('Content-Length', str(len(index)))]
|
|
|
|
start_response(status, headers)
|
|
|
|
return [index]
|