84 lines
3.2 KiB
Python
84 lines
3.2 KiB
Python
# Copyright (c) 2012 Web Notes Technologies Pvt Ltd (http://erpnext.com)
|
|
#
|
|
# MIT License (MIT)
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
# to deal in the Software without restriction, including without limitation
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
|
|
# OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
#
|
|
|
|
from __future__ import unicode_literals
|
|
"""
|
|
Utilities for using modules
|
|
"""
|
|
import webnotes, os, conf
|
|
|
|
transfer_types = ['Role', 'Print Format','DocType','Page','DocType Mapper',
|
|
'GL Mapper','Search Criteria', 'Patch', 'Report']
|
|
|
|
lower_case_files_for = ['DocType', 'Page', 'Search Criteria', 'Report',
|
|
"Workflow", 'Module Def', 'Desktop Item', 'Workflow State', 'Workflow Action']
|
|
|
|
code_fields_dict = {
|
|
'Page':[('script', 'js'), ('content', 'html'), ('style', 'css'), ('static_content', 'html'), ('server_code', 'py')],
|
|
'DocType':[('server_code_core', 'py'), ('client_script_core', 'js')],
|
|
'Search Criteria':[('report_script', 'js'), ('server_script', 'py'), ('custom_query', 'sql')],
|
|
'Patch':[('patch_code', 'py')],
|
|
'Stylesheet':['stylesheet', 'css'],
|
|
'Page Template':['template', 'html'],
|
|
'Control Panel':[('startup_code', 'js'), ('startup_css', 'css')]
|
|
}
|
|
|
|
def scrub(txt):
|
|
return txt.replace(' ','_').replace('-', '_').replace('/', '_').lower()
|
|
|
|
def scrub_dt_dn(dt, dn):
|
|
"""Returns in lowercase and code friendly names of doctype and name for certain types"""
|
|
ndt, ndn = dt, dn
|
|
if dt in lower_case_files_for:
|
|
ndt, ndn = scrub(dt), scrub(dn)
|
|
|
|
return ndt, ndn
|
|
|
|
def get_module_path(module):
|
|
"""Returns path of the given module"""
|
|
m = scrub(module)
|
|
|
|
app_path = os.path.dirname(conf.__file__)
|
|
|
|
if m in ('core'):
|
|
return os.path.join(app_path, 'lib', 'core')
|
|
else:
|
|
return os.path.join(app_path, 'app', m)
|
|
|
|
def get_doc_path(module, doctype, name):
|
|
dt, dn = scrub_dt_dn(doctype, name)
|
|
return os.path.join(get_module_path(module), dt, dn)
|
|
|
|
def reload_doc(module, dt=None, dn=None, force=True):
|
|
from webnotes.modules.import_file import import_files
|
|
return import_files(module, dt, dn, force)
|
|
|
|
def export_doc(doctype, name, module=None):
|
|
"""write out a doc"""
|
|
from webnotes.modules.export_file import write_document_file
|
|
import webnotes.model.doc
|
|
if not module: module = webnotes.conn.get_value(doctype, name, 'module')
|
|
doclist = [d.fields for d in webnotes.model.doc.get(doctype, name)]
|
|
write_document_file(doclist, module)
|
|
|
|
|
|
|