Module:BCIChapters: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local special_cases = { | |||
["Augustus, You Jerk #2"] = "Augustus, You Jerk 2" | |||
} | |||
function p.urlDecode(str) | function p.urlDecode(str) | ||
Line 50: | Line 36: | ||
end | end | ||
return chapters | return chapters | ||
end | end | ||
Line 60: | Line 45: | ||
for _, chapter in ipairs(chapters) do | for _, chapter in ipairs(chapters) do | ||
if chapter.title == normalizedTitle then | if chapter.title == normalizedTitle then | ||
return chapter[detail] | return chapter[detail] | ||
end | end | ||
end | end | ||
return nil | return nil | ||
end | end | ||
Line 71: | Line 54: | ||
local chapters = p.getChaptersList() | local chapters = p.getChaptersList() | ||
for _, chapter in ipairs(chapters) do | for _, chapter in ipairs(chapters) do | ||
if | if tostring(chapter.seq) == tostring(seq) then | ||
return chapter[detail] | return chapter[detail] | ||
end | end | ||
end | end | ||
return nil | return nil | ||
end | end | ||
Line 86: | Line 67: | ||
for i, chapter in ipairs(chapters) do | for i, chapter in ipairs(chapters) do | ||
if chapter.title == normalizedTitle and i < #chapters then | if chapter.title == normalizedTitle and i < #chapters then | ||
return chapters[i + 1].title | return chapters[i + 1].title | ||
end | end | ||
end | end | ||
return nil | return nil | ||
end | end | ||
Line 112: | Line 79: | ||
for i, chapter in ipairs(chapters) do | for i, chapter in ipairs(chapters) do | ||
if chapter.title == normalizedTitle and i > 1 then | if chapter.title == normalizedTitle and i > 1 then | ||
return chapters[i - 1].title | return chapters[i - 1].title | ||
end | end | ||
end | end | ||
return nil | return nil | ||
end | end | ||
function p.formatDate(date) | |||
function p.formatDate(date | |||
local year, month, day = string.match(date, "(%d+)%-(%d+)%-(%d+)") | local year, month, day = string.match(date, "(%d+)%-(%d+)%-(%d+)") | ||
if year and month and day then | if year and month and day then | ||
return | return string.format("{{Start date|%s|%s|%s}}", year, month, day) | ||
else | else | ||
return date | return date | ||
Line 145: | Line 98: | ||
local decodedTitle = p.urlDecode(chapterTitle) | local decodedTitle = p.urlDecode(chapterTitle) | ||
local normalizedTitle = p.normalizeApostrophes(decodedTitle) | local normalizedTitle = p.normalizeApostrophes(decodedTitle) | ||
local image = frame.args.image | local image = frame.args.image | ||
local caption = frame.args.caption | local caption = frame.args.caption | ||
Line 151: | Line 103: | ||
local minor_characters = frame.args.minor_characters | local minor_characters = frame.args.minor_characters | ||
local locations = frame.args.locations | local locations = frame.args.locations | ||
local seq = frame.args.seq | |||
caption = caption and caption ~= "" and caption or nil | caption = caption and caption ~= "" and caption or nil | ||
local date, pagecount, next_chapter | local seq = special_cases[chapterTitle] and special_cases[chapterTitle].seq or p.getChapterDetails(normalizedTitle, "seq") or "N/A" | ||
local date = p.getChapterDetails(normalizedTitle, "date") or "N/A" | |||
local pagecount = p.getChapterDetails(normalizedTitle, "pagecount") or "N/A" | |||
local next_chapter = p.getNextChapter(normalizedTitle) or "N/A" | |||
local prev_chapter = p.getPreviousChapter(normalizedTitle) or "N/A" | |||
if seq | if seq ~= "N/A" then | ||
date = p.getChapterDetailsBySeq(seq, "date") or | date = p.getChapterDetailsBySeq(seq, "date") or date | ||
pagecount = p.getChapterDetailsBySeq(seq, "pagecount") or | pagecount = p.getChapterDetailsBySeq(seq, "pagecount") or pagecount | ||
next_chapter = p. | next_chapter = p.getChapterDetailsBySeq(seq + 1, "title") or next_chapter | ||
prev_chapter = p.getChapterDetailsBySeq(seq - 1, "title") or prev_chapter | |||
end | end | ||
local infobox = mw.html.create('table') | local infobox = mw.html.create('table') | ||
Line 216: | Line 160: | ||
infobox:tag('tr') | infobox:tag('tr') | ||
:tag('th'):wikitext('Published'):done() | :tag('th'):wikitext('Published'):done() | ||
:tag('td'):wikitext(p.formatDate(date | :tag('td'):wikitext(p.formatDate(date)):done() | ||
:done() | :done() | ||
Revision as of 13:16, 27 May 2024
Documentation for this module may be created at Module:BCIChapters/doc
local p = {}
local special_cases = {
["Augustus, You Jerk #2"] = "Augustus, You Jerk 2"
}
function p.urlDecode(str)
str = string.gsub(str, '%%(%x%x)', function(x) return string.char(tonumber(x, 16)) end)
return str
end
function p.normalizeApostrophes(str)
str = string.gsub(str, "’", "'")
str = string.gsub(str, "'", "'")
str = string.gsub(str, "%%27", "'")
return str
end
function p.getChaptersList()
local listPage = mw.title.new('Template:BCIChapterList')
if not listPage then
return {}
end
local content = listPage:getContent()
if not content then
return {}
end
-- Normalize apostrophes in content
content = p.normalizeApostrophes(content)
local chapters = {}
for seq, title, date, pagecount in string.gmatch(content, "{{BCIChapter|seq=(%d+)|title=([^|]+)|date=([^|]+)|pagecount=(%d+)}}") do
table.insert(chapters, {seq = seq, title = title, date = date, pagecount = tonumber(pagecount)})
end
return chapters
end
function p.getChapterDetails(chapterTitle, detail)
local chapters = p.getChaptersList()
local decodedTitle = p.urlDecode(chapterTitle)
local normalizedTitle = p.normalizeApostrophes(decodedTitle)
for _, chapter in ipairs(chapters) do
if chapter.title == normalizedTitle then
return chapter[detail]
end
end
return nil
end
function p.getChapterDetailsBySeq(seq, detail)
local chapters = p.getChaptersList()
for _, chapter in ipairs(chapters) do
if tostring(chapter.seq) == tostring(seq) then
return chapter[detail]
end
end
return nil
end
function p.getNextChapter(chapterTitle)
local chapters = p.getChaptersList()
local decodedTitle = p.urlDecode(chapterTitle)
local normalizedTitle = p.normalizeApostrophes(decodedTitle)
for i, chapter in ipairs(chapters) do
if chapter.title == normalizedTitle and i < #chapters then
return chapters[i + 1].title
end
end
return nil
end
function p.getPreviousChapter(chapterTitle)
local chapters = p.getChaptersList()
local decodedTitle = p.urlDecode(chapterTitle)
local normalizedTitle = p.normalizeApostrophes(decodedTitle)
for i, chapter in ipairs(chapters) do
if chapter.title == normalizedTitle and i > 1 then
return chapters[i - 1].title
end
end
return nil
end
function p.formatDate(date)
local year, month, day = string.match(date, "(%d+)%-(%d+)%-(%d+)")
if year and month and day then
return string.format("{{Start date|%s|%s|%s}}", year, month, day)
else
return date
end
end
function p.infoboxBCIChapter(frame)
local chapterTitle = frame.args.chapter_title or mw.title.getCurrentTitle().text
local decodedTitle = p.urlDecode(chapterTitle)
local normalizedTitle = p.normalizeApostrophes(decodedTitle)
local image = frame.args.image
local caption = frame.args.caption
local major_characters = frame.args.major_characters
local minor_characters = frame.args.minor_characters
local locations = frame.args.locations
local seq = frame.args.seq
caption = caption and caption ~= "" and caption or nil
local seq = special_cases[chapterTitle] and special_cases[chapterTitle].seq or p.getChapterDetails(normalizedTitle, "seq") or "N/A"
local date = p.getChapterDetails(normalizedTitle, "date") or "N/A"
local pagecount = p.getChapterDetails(normalizedTitle, "pagecount") or "N/A"
local next_chapter = p.getNextChapter(normalizedTitle) or "N/A"
local prev_chapter = p.getPreviousChapter(normalizedTitle) or "N/A"
if seq ~= "N/A" then
date = p.getChapterDetailsBySeq(seq, "date") or date
pagecount = p.getChapterDetailsBySeq(seq, "pagecount") or pagecount
next_chapter = p.getChapterDetailsBySeq(seq + 1, "title") or next_chapter
prev_chapter = p.getChapterDetailsBySeq(seq - 1, "title") or prev_chapter
end
local infobox = mw.html.create('table')
infobox:addClass('infobox')
-- Add title as heading
infobox:tag('tr')
:tag('th')
:attr('colspan', '2')
:css('text-align', 'center')
:css('font-size', '125%')
:css('padding', '5px')
:wikitext(chapterTitle)
:done()
:done()
-- Optionally add image with standard size
if image and image ~= "" then
infobox:tag('tr')
:tag('td')
:attr('colspan', '2')
:css('text-align', 'center')
:wikitext('[[File:' .. image .. '|250px]]')
:done()
:done()
-- Add caption below image if provided
if caption then
infobox:tag('tr')
:tag('td')
:attr('colspan', '2')
:css('text-align', 'center')
:css('font-size', '90%')
:css('padding', '5px')
:wikitext(caption)
:done()
:done()
end
end
infobox:tag('tr')
:tag('th'):wikitext('Published'):done()
:tag('td'):wikitext(p.formatDate(date)):done()
:done()
infobox:tag('tr')
:tag('th'):wikitext('Page count'):done()
:tag('td'):wikitext(pagecount):done()
:done()
-- Add additional manual entry parameters
if major_characters and major_characters ~= "" then
infobox:tag('tr')
:tag('th'):wikitext('Major characters'):done()
:tag('td'):wikitext(major_characters):done()
:done()
end
if minor_characters and minor_characters ~= "" then
infobox:tag('tr')
:tag('th'):wikitext('Minor characters'):done()
:tag('td'):wikitext(minor_characters):done()
:done()
end
if locations and locations ~= "" then
infobox:tag('tr')
:tag('th'):wikitext('Locations'):done()
:tag('td'):wikitext(locations):done()
:done()
end
-- Add chapter navigation heading
infobox:tag('tr')
:tag('th')
:attr('colspan', '2')
:css('text-align', 'center')
:css('font-size', '110%')
:css('padding', '5px')
:css('background-color', '#f0f0f0')
:wikitext('Chapter navigation')
:done()
:done()
-- Add chapter navigation links in separate columns
local nav_row = infobox:tag('tr')
nav_row:tag('td')
:css('text-align', 'left')
:wikitext(prev_chapter ~= "N/A" and string.format("[[%s:%s|← %s]]", mw.title.getCurrentTitle().nsText, prev_chapter, prev_chapter) or "← Previous")
:done()
nav_row:tag('td')
:css('text-align', 'right')
:wikitext(next_chapter ~= "N/A" and string.format("[[%s:%s|%s →]]", mw.title.getCurrentTitle().nsText, next_chapter, next_chapter) or "Next →")
:done()
nav_row:done()
-- Add link to read chapter in BCI Members' Library
infobox:tag('tr')
:tag('td')
:attr('colspan', '2')
:css('text-align', 'center')
:wikitext("[https://bittersweetcandybowl.com/members/ Read in the BCI Members' Library]")
:done()
:done()
-- Return the complete wikitext
return frame:preprocess(tostring(infobox))
end
return p