Files
freeipa/install/wsgi/plugins.py
T

60 lines
1.8 KiB
Python
Raw Normal View History

2013-04-23 19:54:21 +02: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 09:21:16 +02:00
from __future__ import absolute_import
2013-04-23 19:54:21 +02:00
2017-05-24 14:35:07 +00:00
import logging
2013-04-23 19:54:21 +02:00
import os
from ipaplatform.paths import paths
2017-05-24 14:35:07 +00:00
logger = logging.getLogger(os.path.basename(__file__))
2013-04-23 19:54:21 +02:00
def get_plugin_index():
2014-10-03 17:27:57 -06:00
if not os.path.isdir(paths.IPA_JS_PLUGINS_DIR):
2013-04-23 19:54:21 +02:00
raise Exception("Supplied plugin directory path is not a directory")
2014-10-03 17:27:57 -06:00
dirs = os.listdir(paths.IPA_JS_PLUGINS_DIR)
2013-04-23 19:54:21 +02:00
index = 'define([],function(){return['
index += ','.join("'"+x+"'" for x in dirs)
index += '];});'
return index.encode('utf-8')
2013-04-23 19:54:21 +02:00
def get_failed():
return (
b'define([],function(){return[];});/*error occured: serving default */'
)
2013-04-23 19:54:21 +02:00
def application(environ, start_response):
try:
index = get_plugin_index()
status = '200 OK'
2015-07-30 16:49:29 +02:00
except Exception as e:
2017-05-24 14:35:07 +00:00
logger.error('plugin index generation failed: %s', e)
2013-04-23 19:54:21 +02:00
status = '200 OK'
index = get_failed()
headers = [('Content-type', 'application/javascript'),
('Content-Length', str(len(index)))]
start_response(status, headers)
return [index]