2013-05-14 14:34:10 +00:00
|
|
|
#!/usr/bin/env lua
|
|
|
|
|
|
|
|
-- porteail.lua
|
|
|
|
|
|
|
|
--[[ Requirements ]]--
|
|
|
|
|
|
|
|
require 'lfs'
|
|
|
|
|
|
|
|
--[[ Variables ]]--
|
|
|
|
|
|
|
|
-- Mandatories files
|
2013-05-14 16:40:41 +00:00
|
|
|
local configFile = './' .. 'configrc'
|
2013-05-14 14:34:10 +00:00
|
|
|
-- Default directories values
|
|
|
|
local currentpath = os.getenv('CURDIR') or '.'
|
2013-05-14 16:40:41 +00:00
|
|
|
local default_dir_category = 'categ'
|
|
|
|
local default_dir_component = 'composants'
|
|
|
|
local default_dir_destination = 'porteail'
|
2013-05-15 12:23:37 +00:00
|
|
|
local default_dir_img_destination = 'image'
|
|
|
|
local default_dir_img_source = 'img'
|
2013-05-15 13:14:20 +00:00
|
|
|
local default_dir_css_source = 'style'
|
2013-05-14 14:34:10 +00:00
|
|
|
-- Default files values
|
2013-05-14 16:40:41 +00:00
|
|
|
local default_img_filename = 'generique.png'
|
|
|
|
local default_index_filename = 'index.html'
|
|
|
|
local default_template_index_filename = 'index.html'
|
2013-05-15 09:22:55 +00:00
|
|
|
local default_template_categ_filename = 'categ.html'
|
|
|
|
local default_template_element_filename = 'one_element.html'
|
2013-05-15 13:14:20 +00:00
|
|
|
local default_css_filename = 'noir.css'
|
|
|
|
local default_css_menu_without = 'sans_menu.css'
|
|
|
|
local default_css_menu_with = 'avec_menu.css'
|
2013-05-14 16:40:41 +00:00
|
|
|
-- Other defaults values
|
|
|
|
local default_categ_extension = 'txt'
|
2013-05-15 10:00:45 +00:00
|
|
|
local DIR_SEP = '/'
|
2013-05-15 13:14:20 +00:00
|
|
|
local default_css_name = 'Défaut'
|
2013-05-14 14:34:10 +00:00
|
|
|
|
|
|
|
--[[ Functions ]]--
|
|
|
|
|
|
|
|
function getConfig(file)
|
|
|
|
result = {}
|
|
|
|
f = assert(io.open(file, 'r'))
|
|
|
|
while true do
|
|
|
|
line = f.read(f)
|
|
|
|
if not line then break end
|
|
|
|
local key = line:match('([^#].-)[ ]+=')
|
|
|
|
local val = line:match('=[ ]+(.*)')
|
|
|
|
local comment = string.find(line, '^#+(.*)')
|
|
|
|
if comment then
|
|
|
|
-- do nothing with comment
|
|
|
|
elseif key then
|
|
|
|
result[key] = val
|
|
|
|
end
|
|
|
|
end
|
|
|
|
assert(f:close())
|
|
|
|
return result
|
|
|
|
end
|
|
|
|
|
2013-05-14 16:40:41 +00:00
|
|
|
function replace(string, table)
|
|
|
|
return string:gsub("$(%b{})", function(string)
|
|
|
|
return table[string:sub(2,-2)]
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2013-05-14 14:34:10 +00:00
|
|
|
function listing (path, extension)
|
|
|
|
files = {}
|
|
|
|
if lfs.attributes(path) then
|
|
|
|
for file in lfs.dir(path) do
|
|
|
|
if file ~= "." and file ~= ".." then
|
|
|
|
local f = path..'/'..file
|
|
|
|
local attr = lfs.attributes (f)
|
|
|
|
filext = (string.match(file, "[^\\/]-%.?([^%.\\/]*)$"))
|
|
|
|
if attr.mode == 'file' and filext == extension then
|
|
|
|
table.insert(files, f)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
files = nil
|
|
|
|
end
|
|
|
|
return files
|
|
|
|
end
|
|
|
|
|
2013-05-15 10:00:45 +00:00
|
|
|
function basename (string, suffix)
|
|
|
|
string = string or ''
|
|
|
|
local basename = string.gsub (string, '[^'.. DIR_SEP ..']*'.. DIR_SEP ..'', '')
|
|
|
|
if suffix then
|
|
|
|
basename = string.gsub (basename, suffix, '')
|
|
|
|
end
|
|
|
|
return basename
|
|
|
|
end
|
|
|
|
|
2013-05-15 12:23:37 +00:00
|
|
|
function processImage(image, source, img_destination, destination, default_img)
|
|
|
|
-- if no image given, use default one
|
|
|
|
if not image or image == nil or image == '' then
|
|
|
|
image = default_img
|
|
|
|
end
|
|
|
|
-- create image weblink
|
|
|
|
result = img_destination .. '/' .. basename(image)
|
|
|
|
-- check if this image exists
|
|
|
|
attr = lfs.attributes(destination .. '/' .. result)
|
|
|
|
if not attr then
|
|
|
|
img_path = source .. '/' .. image
|
|
|
|
f = assert(io.open(img_path, 'rb'))
|
|
|
|
img_src = assert(f:read('*a'))
|
|
|
|
assert(f:close())
|
|
|
|
img_dest = assert(io.open(destination .. '/' .. result, 'wb'))
|
|
|
|
assert(img_dest:write(img_src))
|
|
|
|
assert(img_dest:close())
|
|
|
|
end
|
|
|
|
return result
|
|
|
|
end
|
|
|
|
|
|
|
|
function process(filepath, template_categ, template_element, img_destination, destination, img_source, default_img)
|
2013-05-14 14:34:10 +00:00
|
|
|
-- parse given file
|
2013-05-15 12:23:37 +00:00
|
|
|
local categ_page = ''
|
2013-05-15 09:22:55 +00:00
|
|
|
local elements = {}
|
2013-05-14 14:34:10 +00:00
|
|
|
for line in io.lines(filepath) do
|
2013-05-15 09:22:55 +00:00
|
|
|
local element = ''
|
2013-05-14 14:34:10 +00:00
|
|
|
-- check if this line is a comment ("# my comment"), a category ("[[My category]]Its description") or an element ("Title##Description##URL##Image")
|
|
|
|
is_comment = string.find(line, '^#+.*')
|
|
|
|
is_title = string.find(line, '%[%[(.*)%]%](.*)')
|
|
|
|
is_element = string.find(line, '(.*)##(.*)##(.*)##(.*)')
|
|
|
|
if is_comment then
|
|
|
|
-- do nothing because it's a comment
|
|
|
|
elseif is_title then
|
|
|
|
title = ''
|
|
|
|
for t in string.gmatch(line, '%[%[(.*)%]%].*') do title = title .. t end
|
|
|
|
description =''
|
|
|
|
for d in string.gmatch(line, '%[%[.*%]%](.*)') do description = description .. d end
|
2013-05-15 12:23:37 +00:00
|
|
|
categ_page = replace(template_categ, {CATEG_TITLE=title, CATEG_DESC=description})
|
2013-05-14 14:34:10 +00:00
|
|
|
elseif is_element then
|
|
|
|
title = ''
|
|
|
|
description = ''
|
|
|
|
url = ''
|
|
|
|
img = ''
|
|
|
|
for t in string.gmatch(line, '(.*)##.*##.*##.*') do title = title .. t end
|
2013-05-15 09:22:55 +00:00
|
|
|
for d in string.gmatch(line, '.*##.*##(.*)##.*') do description = description .. d end
|
|
|
|
for u in string.gmatch(line, '.*##(.*)##.*##.*') do url = url .. u end
|
2013-05-14 14:34:10 +00:00
|
|
|
for i in string.gmatch(line, '.*##.*##.*##(.*)') do img = img .. i end
|
2013-05-15 12:23:37 +00:00
|
|
|
img_description = " "
|
|
|
|
img_url = processImage(img, img_source, img_destination, destination, default_img)
|
|
|
|
url = url:gsub('%&', '%&')
|
|
|
|
element = replace(template_element, {ELEMENT_URL=url, ELEMENT_DESC=description, ELEMENT_TITLE=title, IMG_URL=img_url, IMG_DESC=img_description})
|
2013-05-15 09:22:55 +00:00
|
|
|
table.insert(elements, element)
|
2013-05-14 14:34:10 +00:00
|
|
|
end
|
|
|
|
end
|
2013-05-15 09:22:55 +00:00
|
|
|
local text_elements = ''
|
|
|
|
for k, v in pairs(elements) do
|
|
|
|
text_elements = text_elements .. v
|
|
|
|
end
|
2013-05-15 12:23:37 +00:00
|
|
|
local result = replace(categ_page, {ELEMENTS=text_elements})
|
2013-05-15 09:22:55 +00:00
|
|
|
return result
|
2013-05-14 14:34:10 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
--[[ Principal ]]--
|
|
|
|
|
|
|
|
-- fetch user defined values
|
|
|
|
config = getConfig(configFile)
|
2013-05-14 16:40:41 +00:00
|
|
|
|
2013-05-14 14:34:10 +00:00
|
|
|
-- create values for directories
|
|
|
|
categ = config['CATEGORIES'] or default_dir_category
|
|
|
|
component = config['COMPOSANTS'] or default_dir_component
|
2013-05-14 16:40:41 +00:00
|
|
|
destination = config['CIBLE'] or default_dir_destination
|
2013-05-15 12:23:37 +00:00
|
|
|
img_destination = config['CIBLE_IMAGE'] or default_dir_img_destination
|
|
|
|
img_source = config['IMAGES'] or default_dir_img_source
|
2013-05-15 13:14:20 +00:00
|
|
|
css_source = config['CSS'] or default_dir_css_source
|
2013-05-14 14:34:10 +00:00
|
|
|
-- create values for files
|
2013-05-14 16:40:41 +00:00
|
|
|
index_filename = config['INDEX'] or default_index_filename
|
|
|
|
main_template = config['TEMPLATE_INDEX'] or default_template_index_filename
|
2013-05-15 09:22:55 +00:00
|
|
|
template_categ_filename = config['TEMPLATE_CATEG'] or default_template_categ_filename
|
|
|
|
template_element_filename = config['TEMPLATE_ELEMENT'] or default_template_element_filename
|
2013-05-15 12:23:37 +00:00
|
|
|
default_img = config['DEFAUT_IMG'] or default_img_filename
|
2013-05-15 13:14:20 +00:00
|
|
|
css_filename = config['STYLE'] or default_css_filename
|
|
|
|
css_menu = default_css_menu_without
|
2013-05-15 13:19:33 +00:00
|
|
|
local menu = ''
|
2013-05-15 13:14:20 +00:00
|
|
|
if config['MENU'] then
|
|
|
|
css_menu = default_css_menu_with
|
2013-05-15 13:19:33 +00:00
|
|
|
menu = config['MENU']
|
2013-05-15 13:14:20 +00:00
|
|
|
end
|
2013-05-14 14:34:10 +00:00
|
|
|
-- other default values
|
|
|
|
categ_extension = config['CATEGORIES_EXT'] or default_categ_extension
|
2013-05-15 13:14:20 +00:00
|
|
|
css_name = config['CSS_NAME'] or default_css_name
|
2013-05-14 16:40:41 +00:00
|
|
|
|
2013-05-15 09:22:55 +00:00
|
|
|
-- get pages
|
2013-05-14 16:40:41 +00:00
|
|
|
index_file = assert(io.open(currentpath .. '/' .. component .. '/' .. index_filename, 'r'))
|
|
|
|
index = assert(index_file:read('*a'))
|
|
|
|
assert(index_file:close())
|
2013-05-15 09:22:55 +00:00
|
|
|
template_categ_file = assert(io.open(currentpath .. '/' .. component .. '/' .. template_categ_filename, 'r'))
|
|
|
|
template_categ = assert(template_categ_file:read('*a'))
|
|
|
|
assert(template_categ_file:close())
|
|
|
|
template_element_file = assert(io.open(currentpath .. '/' .. component .. '/' .. template_element_filename, 'r'))
|
|
|
|
template_element = assert(template_element_file:read('*a'))
|
|
|
|
assert(template_element_file:close())
|
2013-05-15 13:19:33 +00:00
|
|
|
-- open menu file if menu have been activated
|
|
|
|
local menu_content = ''
|
|
|
|
if menu ~= '' then
|
|
|
|
menu_file = assert(io.open(component .. '/' .. menu, 'r'))
|
|
|
|
menu_content = assert(menu_file:read('*a'))
|
|
|
|
assert(menu_file:close())
|
|
|
|
end
|
|
|
|
-- FIXME: intro
|
2013-05-15 09:22:55 +00:00
|
|
|
local introduction = ''
|
2013-05-14 16:40:41 +00:00
|
|
|
|
2013-05-15 12:23:37 +00:00
|
|
|
-- Check if public directory exists
|
|
|
|
if lfs.attributes(destination) == nil then
|
|
|
|
assert(lfs.mkdir(destination))
|
|
|
|
end
|
|
|
|
-- Check if image directory exists
|
|
|
|
if lfs.attributes(destination .. '/' .. img_destination) == nil then
|
|
|
|
assert(lfs.mkdir(destination .. '/' .. img_destination))
|
|
|
|
end
|
|
|
|
|
2013-05-14 14:34:10 +00:00
|
|
|
-- Browse categ directory
|
|
|
|
local categories_files = listing (currentpath .. '/' .. categ, categ_extension)
|
2013-05-15 09:22:55 +00:00
|
|
|
local content = ''
|
2013-05-14 14:34:10 +00:00
|
|
|
if categories_files then
|
|
|
|
for k,v in pairs(categories_files) do
|
|
|
|
-- read category content
|
|
|
|
attr = lfs.attributes(v)
|
|
|
|
if attr and attr.mode == 'file' then
|
2013-05-15 12:23:37 +00:00
|
|
|
content = content .. process(v, template_categ, template_element, img_destination, destination, img_source, default_img)
|
2013-05-14 14:34:10 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
print ("-- No category file found!")
|
|
|
|
end
|
2013-05-14 16:40:41 +00:00
|
|
|
|
|
|
|
-- Create index file in destination directory
|
|
|
|
result = assert(io.open(destination .. '/' .. main_template, 'wb'))
|
|
|
|
-- create substitution table
|
|
|
|
substitutions = {
|
|
|
|
TITLE=config['TITRE'] .. ' - Accueil',
|
|
|
|
PORTEAIL_TITLE=config['TITRE'],
|
2013-05-15 09:22:55 +00:00
|
|
|
CONTENT=content,
|
|
|
|
INTRODUCTION=introduction,
|
2013-05-15 13:19:33 +00:00
|
|
|
MENU=menu_content,
|
2013-05-15 13:14:20 +00:00
|
|
|
CSS_COLOR=css_filename,
|
|
|
|
DEFAULT_CSS=css_menu,
|
2013-05-14 16:40:41 +00:00
|
|
|
}
|
|
|
|
-- replace variables in result
|
2013-05-15 09:22:55 +00:00
|
|
|
homepage = replace(index, substitutions)
|
|
|
|
assert(result:write(homepage))
|
2013-05-14 16:40:41 +00:00
|
|
|
-- close file
|
|
|
|
assert(result:close())
|
|
|
|
|
2013-05-15 13:14:20 +00:00
|
|
|
-- Copy miscellaneous files to destination
|
|
|
|
to_be_copied = {
|
|
|
|
component .. '/' .. 'html5.js',
|
|
|
|
css_source .. '/' .. css_filename,
|
|
|
|
css_source .. '/' .. css_menu,
|
|
|
|
}
|
|
|
|
for i, filepath in pairs(to_be_copied) do
|
|
|
|
fileattr = lfs.attributes(filepath)
|
|
|
|
if not fileattr or fileattr.mode ~= 'file' then
|
|
|
|
print (filepath .. " doesn't exist or is not a file!")
|
|
|
|
os.exit(1)
|
|
|
|
end
|
|
|
|
dest = destination .. '/' .. basename(filepath)
|
|
|
|
file = assert(io.open(filepath, 'r'))
|
|
|
|
filecontent = assert(file:read('*a'))
|
|
|
|
assert(file:close())
|
|
|
|
destfile = assert(io.open(dest, 'wb'))
|
|
|
|
assert(destfile:write(filecontent))
|
|
|
|
assert(destfile:close())
|
|
|
|
end
|
|
|
|
|
2013-05-14 16:40:41 +00:00
|
|
|
--[[ END ]]--
|