Модуль:Ftl
Материал из Space Station 14 Вики
Для документации этого модуля может быть создана страница Модуль:Ftl/doc
local p = {} -- Загрузка данных local function loadData(filePath) local page = mw.title.new(filePath) local content = page and page:getContent() return content and mw.text.jsonDecode(content) or nil end -- Поиск текста по ключу local function findTextByKey(data, key) for _, category in pairs(data) do if category[key] then return category[key] end end return nil end -- Поиск ключа по тексту local function findKeyByText(data, text) for categoryName, category in pairs(data) do for key, value in pairs(category) do if value == text then return key end end end return nil end -- Получение всех строк из категории local function getCategoryStrings(data, categoryName) local category = data[categoryName] if not category then return nil end local result = {} for _, value in pairs(category) do if type(value) == "string" then table.insert(result, value) end end return result end -- Основная функция модуля function p.main(frame) local mode = frame.args[1] local param = frame.args[2] if not mode or not param then return "Ошибка: Не указаны все необходимые параметры." end -- Загрузка данных из JSON local data = loadData('User:IanComradeBot/ftl/ru-RU.json') if not data or type(data) ~= 'table' then return 'Ошибка: Невозможно загрузить данные из JSON.' end if mode == "translation" then local result = findTextByKey(data, param) return result or "Ошибка: Ключ не найден." elseif mode == "key" then local result = findKeyByText(data, param) return result or "Ошибка: Текст не найден." elseif mode == "categories" then local strings = getCategoryStrings(data, param) if not strings or #strings == 0 then return "Ошибка: Категория не найдена или пуста." end local output = {} for _, value in ipairs(strings) do table.insert(output, "<li>" .. mw.text.encode(value) .. "</li>") end return table.concat(output) else return "Ошибка: Неизвестный режим работы." end end return p