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
|
|
|
|
"""
|
2018-04-05 02:21:16 -05:00
|
|
|
from __future__ import absolute_import
|
2013-04-23 12:54:21 -05:00
|
|
|
|
2017-05-24 09:35:07 -05:00
|
|
|
import logging
|
2013-04-23 12:54:21 -05:00
|
|
|
import os
|
2014-05-29 07:47:17 -05:00
|
|
|
from ipaplatform.paths import paths
|
2017-05-24 09:35:07 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(os.path.basename(__file__))
|
|
|
|
|
2013-04-23 12:54:21 -05:00
|
|
|
|
|
|
|
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['
|
2020-11-06 01:53:35 -06:00
|
|
|
for x in dirs:
|
|
|
|
p = os.path.join(paths.IPA_JS_PLUGINS_DIR, x, x + '.js')
|
|
|
|
if os.path.exists(p):
|
|
|
|
index += "'" + x + "',"
|
2013-04-23 12:54:21 -05:00
|
|
|
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:
|
2017-05-24 09:35:07 -05:00
|
|
|
logger.error('plugin index generation failed: %s', e)
|
2013-04-23 12:54:21 -05:00
|
|
|
status = '200 OK'
|
|
|
|
index = get_failed()
|
|
|
|
headers = [('Content-type', 'application/javascript'),
|
|
|
|
('Content-Length', str(len(index)))]
|
|
|
|
start_response(status, headers)
|
|
|
|
return [index]
|