Module:Lua json: Difference between revisions

From Visual Data Wiki
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}
local p = {}


function p.getDataByTitle(titleParam, titleValue, targetParam)
function p.getProjectData()
     local pages = mw.site.indexPages("Data:")
     local jsonPage = mw.title.new("Entry:Datasets/Dataset")
     local results = {}
     if jsonPage and jsonPage.exists then
 
        local content = jsonPage:getContent()
    for _, page in ipairs(pages) do
        local jsonData = mw.text.jsonDecode(content)
        local jsonPage = mw.title.new(page)
        if jsonData and jsonData.schemas and jsonData.schemas.Dataset then
        if jsonPage and jsonPage.exists then
            return jsonData.schemas.Dataset.date
            local content = jsonPage:getContent()
        else
            local jsonData = mw.text.jsonDecode(content)
             return "Error: Invalid JSON structure"
            if jsonData and jsonData.schemas and jsonData.schemas.Project and jsonData.schemas.Project[titleParam] == titleValue then
                table.insert(results, jsonData.schemas.Project[targetParam])
             end
         end
         end
    else
        return "Error: JSON page does not exist"
     end
     end
    return results
end
end


return p
return p

Latest revision as of 10:33, 2 May 2024

Documentation for this module may be created at Module:Lua json/doc

local p = {}

function p.getProjectData()
    local jsonPage = mw.title.new("Entry:Datasets/Dataset")
    if jsonPage and jsonPage.exists then
        local content = jsonPage:getContent()
        local jsonData = mw.text.jsonDecode(content)
        if jsonData and jsonData.schemas and jsonData.schemas.Dataset then
            return jsonData.schemas.Dataset.date
        else
            return "Error: Invalid JSON structure"
        end
    else
        return "Error: JSON page does not exist"
    end
end

return p