« Module:ZoteroAPI » : différence entre les versions

De alcolois
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
 
(3 versions intermédiaires par le même utilisateur non affichées)
Ligne 17 : Ligne 17 :
     end
     end
      
      
     -- Construire l'URL avec l'itemKey spécifique
     -- Construire l'URL avec l'itemKey directement dans le chemin
     local url = 'https://api.zotero.org/groups/4893620/items/' .. itemKey .. '?include=data&format=json'
     local url = 'https://api.zotero.org/groups/4893620/items/' .. itemKey
      
      
    -- Afficher l'URL pour déboguer
     -- Récupérer les données avec getExternalData en utilisant JSONPath
    mw.log('Fetching URL: ' .. url)
     local success, result = pcall(function()
   
         return mw.ext.externalData.getExternalData({
     -- Récupérer les données avec getExternalData
            url = url,
     local success, result
            format = 'json',
    success, result = pcall(function()
            use_jsonpath = true,
         return mw.ext.externalData.getWebData{url = url}
            data = {
                key = '$.key',
                caseName = '$.data.caseName',
                dateDecided = '$.data.dateDecided',
                court = '$.data.court',
                url = '$.data.url',
                history = '$.data.history',
                docketNumber = '$.data.docketNumber',
                firstName = '$.data.creators[0].firstName',
                lastName = '$.data.creators[0].lastName'
            }
        })
     end)
     end)
      
      
     if not success then
     if not success or not result then
        mw.log('Error fetching data: ' .. tostring(result))
        return nil
    end
   
    if not result or type(result) ~= "table" then
        mw.log('No data or unexpected type: ' .. type(result))
         return nil
         return nil
     end
     end
      
      
     -- Pour le débogage
     -- Créer un objet avec les données extraites
    mw.log('Response type: ' .. type(result))
     local data = {}
   
    -- ExternalData peut retourner les données dans un format de table spécifique
    -- Tentons de trouver la donnée JSON dans cette table
     local jsonData
   
    -- Parcourir les résultats pour trouver le contenu JSON
    for k, v in pairs(result) do
        if type(v) == "string" and v:match("^%s*[{[]") then
            -- Cela semble être du JSON
            jsonData = v
            break
        end
    end
      
      
     if not jsonData then
     -- ExternalData retourne un tableau de valeurs pour chaque champ
        -- Si nous ne trouvons pas de JSON, essayons la première valeur
    -- Nous prenons le premier élément de chaque tableau
         if result[1] and type(result[1]) == "table" and result[1][1] then
    for field, values in pairs(result) do
             jsonData = result[1][1]
         if type(values) == "table" and values[1] then
             data[field] = values[1]
         end
         end
     end
     end
      
      
     if not jsonData then
     cachedData = data
        mw.log('No JSON data found in response')
        return nil
    end
   
    -- Décoder le JSON
    local decoded
    success, decoded = pcall(mw.text.jsonDecode, jsonData)
   
    if not success or not decoded then
        mw.log('Failed to decode JSON: ' .. tostring(decoded))
        return nil
    end
   
    -- Traiter les données décodées
    if decoded.data then
        cachedData = decoded.data
    else
        cachedData = decoded
    end
   
     return cachedData
     return cachedData
end
end


-- Fonction de débogage de base
-- Fonction de débogage simple
function p.debugBasic(frame)
function p.debugSimple(frame)
     local itemKey = frame and frame.args[1]
     local itemKey = frame and frame.args[1]
      
      
Ligne 94 : Ligne 67 :
     end
     end
      
      
     local url = 'https://api.zotero.org/groups/4893620/items/' .. itemKey .. '?include=data&format=json'
     local url = 'https://api.zotero.org/groups/4893620/items/' .. itemKey
      
      
     -- Tester différentes méthodes
     -- Essayons une approche simplifiée
     local outputs = {}
     local output = {"Test de récupération des données:"}
      
      
     -- Méthode 1: getExternalData
     -- Test 1: Récupérer juste le titre sans JSONPath
     local success, result = pcall(function()
     local success, result1 = pcall(function()
         return mw.ext.externalData.getExternalData{url = url, format = 'json'}
         return mw.ext.externalData.getExternalData({
            url = url,
            format = 'json'
        })
     end)
     end)
      
      
     table.insert(outputs, "Méthode 1 (getExternalData):")
     table.insert(output, "\n1. Test sans JSONPath:")
     if success then
     if not success then
         table.insert(outputs, "  Type: " .. type(result))
         table.insert(output, "  Erreur: " .. tostring(result1))
         if type(result) == "table" then
    elseif not result1 then
             table.insert(outputs, "  Clés: " .. table.concat(mw.getKeysSortedByValue(result), ", "))
        table.insert(output, "  Aucun résultat")
    else
        table.insert(output, "  Type de résultat: " .. type(result1))
        -- Afficher quelques détails si c'est une table
         if type(result1) == "table" then
             for k, v in pairs(result1) do
                if type(v) ~= "table" then
                    table.insert(output, "  " .. k .. ": " .. tostring(v))
                else
                    table.insert(output, "  " .. k .. ": [table]")
                end
            end
         else
         else
             table.insert(outputs, "  Valeur: " .. tostring(result))
             table.insert(output, "  Valeur: " .. tostring(result1))
         end
         end
    else
        table.insert(outputs, "  Erreur: " .. tostring(result))
     end
     end
      
      
     -- Méthode 2: getWebData
     -- Test 2: Récupérer juste le titre avec JSONPath simple
     success, result = pcall(function()
     local success, result2 = pcall(function()
         return mw.ext.externalData.getWebData{url = url}
         return mw.ext.externalData.getExternalData({
            url = url,
            format = 'json',
            use_jsonpath = true,
            data = {
                title = '$.data.caseName'
            }
        })
     end)
     end)
      
      
     table.insert(outputs, "\nMéthode 2 (getWebData):")
     table.insert(output, "\n2. Test avec JSONPath simple:")
     if success then
     if not success then
         table.insert(outputs, "  Type: " .. type(result))
         table.insert(output, "  Erreur: " .. tostring(result2))
         if type(result) == "table" then
    elseif not result2 then
             table.insert(outputs, "  Clés: " .. table.concat(mw.getKeysSortedByValue(result), ", "))
        table.insert(output, "  Aucun résultat")
    else
        table.insert(output, "  Type de résultat: " .. type(result2))
        -- Afficher quelques détails si c'est une table
         if type(result2) == "table" then
             for k, v in pairs(result2) do
                if type(v) ~= "table" then
                    table.insert(output, "  " .. k .. ": " .. tostring(v))
                else
                    table.insert(output, "  " .. k .. ": [table]")
                    if k == "title" and type(v) == "table" then
                        for i, val in ipairs(v) do
                            table.insert(output, "   " .. i .. ": " .. tostring(val))
                        end
                    end
                end
            end
         else
         else
             table.insert(outputs, "  Valeur: " .. tostring(result))
             table.insert(output, "  Valeur: " .. tostring(result2))
         end
         end
    else
        table.insert(outputs, "  Erreur: " .. tostring(result))
     end
     end
      
      
     return table.concat(outputs, "\n")
    -- Test 3: Essayer avec #get_web_data via preprocess
    local webDataCall = '{{#get_web_data:url=' .. url .. '|format=json|use jsonpath=true|data=title=$.data.caseName}}'
    local result3 = frame:preprocess(webDataCall)
   
    table.insert(output, "\n3. Test avec #get_web_data:")
    table.insert(output, "  Résultat: " .. result3)
   
     return table.concat(output, "\n")
end
end


Ligne 148 : Ligne 161 :
     table.insert(out, "✔ Auteur : " .. (d.firstName or '') .. " " .. (d.lastName or ''))
     table.insert(out, "✔ Auteur : " .. (d.firstName or '') .. " " .. (d.lastName or ''))
     return table.concat(out, "\n")
     return table.concat(out, "\n")
end
function p.debugRawJson(frame)
    local d = p._fetchZoteroData(frame)
    if not d then
        return "Aucune donnée reçue"
    end
    local function indentJson(json)
        local indent = 0
        local formatted = {}
        local inString = false
        for i = 1, #json do
            local c = json:sub(i, i)
            if c == '"' and json:sub(i - 1, i - 1) ~= '\\' then
                inString = not inString
            end
            if not inString then
                if c == '{' or c == '[' then
                    table.insert(formatted, c .. '\n' .. string.rep('  ', indent + 1))
                    indent = indent + 1
                elseif c == '}' or c == ']' then
                    indent = indent - 1
                    table.insert(formatted, '\n' .. string.rep('  ', indent) .. c)
                elseif c == ',' then
                    table.insert(formatted, ',\n' .. string.rep('  ', indent))
                else
                    table.insert(formatted, c)
                end
            else
                table.insert(formatted, c)
            end
        end
        return table.concat(formatted)
    end
    local raw = mw.text.jsonEncode(d)
    local pretty = indentJson(raw)
    return '<pre>' .. pretty .. '</pre>'
end
end


Ligne 231 : Ligne 207 :
function p.debugUrl(frame)
function p.debugUrl(frame)
     local itemKey = frame and frame.args[1] or ""
     local itemKey = frame and frame.args[1] or ""
     return 'https://api.zotero.org/groups/4893620/items/' .. itemKey .. '?include=data&format=json'
     return 'https://api.zotero.org/groups/4893620/items/' .. itemKey
end
end


return p
return p

Dernière version du 12 juin 2025 à 16:40

La documentation pour ce module peut être créée à Module:ZoteroAPI/doc

local p = {}
local cachedData = nil  -- 🔒 Cache unique pour la durée d'exécution de la page

-- Fonction de récupération de données Zotero par itemKey
function p._fetchZoteroData(frame)
    -- Utiliser le cache si disponible
    if cachedData then
        return cachedData
    end
    
    -- Obtenir l'itemKey depuis le paramètre
    local itemKey = frame and frame.args[1]
    
    -- Si aucun itemKey n'est fourni, retourner nil
    if not itemKey or itemKey == "" then
        return nil
    end
    
    -- Construire l'URL avec l'itemKey directement dans le chemin
    local url = 'https://api.zotero.org/groups/4893620/items/' .. itemKey
    
    -- Récupérer les données avec getExternalData en utilisant JSONPath
    local success, result = pcall(function()
        return mw.ext.externalData.getExternalData({
            url = url,
            format = 'json',
            use_jsonpath = true,
            data = {
                key = '$.key',
                caseName = '$.data.caseName',
                dateDecided = '$.data.dateDecided',
                court = '$.data.court',
                url = '$.data.url',
                history = '$.data.history',
                docketNumber = '$.data.docketNumber',
                firstName = '$.data.creators[0].firstName',
                lastName = '$.data.creators[0].lastName'
            }
        })
    end)
    
    if not success or not result then
        return nil
    end
    
    -- Créer un objet avec les données extraites
    local data = {}
    
    -- ExternalData retourne un tableau de valeurs pour chaque champ
    -- Nous prenons le premier élément de chaque tableau
    for field, values in pairs(result) do
        if type(values) == "table" and values[1] then
            data[field] = values[1]
        end
    end
    
    cachedData = data
    return cachedData
end

-- Fonction de débogage simple
function p.debugSimple(frame)
    local itemKey = frame and frame.args[1]
    
    if not itemKey or itemKey == "" then
        return "Aucun itemKey fourni"
    end
    
    local url = 'https://api.zotero.org/groups/4893620/items/' .. itemKey
    
    -- Essayons une approche simplifiée
    local output = {"Test de récupération des données:"}
    
    -- Test 1: Récupérer juste le titre sans JSONPath
    local success, result1 = pcall(function()
        return mw.ext.externalData.getExternalData({
            url = url,
            format = 'json'
        })
    end)
    
    table.insert(output, "\n1. Test sans JSONPath:")
    if not success then
        table.insert(output, "  Erreur: " .. tostring(result1))
    elseif not result1 then
        table.insert(output, "  Aucun résultat")
    else
        table.insert(output, "  Type de résultat: " .. type(result1))
        -- Afficher quelques détails si c'est une table
        if type(result1) == "table" then
            for k, v in pairs(result1) do
                if type(v) ~= "table" then
                    table.insert(output, "  " .. k .. ": " .. tostring(v))
                else
                    table.insert(output, "  " .. k .. ": [table]")
                end
            end
        else
            table.insert(output, "  Valeur: " .. tostring(result1))
        end
    end
    
    -- Test 2: Récupérer juste le titre avec JSONPath simple
    local success, result2 = pcall(function()
        return mw.ext.externalData.getExternalData({
            url = url,
            format = 'json',
            use_jsonpath = true,
            data = {
                title = '$.data.caseName'
            }
        })
    end)
    
    table.insert(output, "\n2. Test avec JSONPath simple:")
    if not success then
        table.insert(output, "  Erreur: " .. tostring(result2))
    elseif not result2 then
        table.insert(output, "  Aucun résultat")
    else
        table.insert(output, "  Type de résultat: " .. type(result2))
        -- Afficher quelques détails si c'est une table
        if type(result2) == "table" then
            for k, v in pairs(result2) do
                if type(v) ~= "table" then
                    table.insert(output, "  " .. k .. ": " .. tostring(v))
                else
                    table.insert(output, "  " .. k .. ": [table]")
                    if k == "title" and type(v) == "table" then
                        for i, val in ipairs(v) do
                            table.insert(output, "    " .. i .. ": " .. tostring(val))
                        end
                    end
                end
            end
        else
            table.insert(output, "  Valeur: " .. tostring(result2))
        end
    end
    
    -- Test 3: Essayer avec #get_web_data via preprocess
    local webDataCall = '{{#get_web_data:url=' .. url .. '|format=json|use jsonpath=true|data=title=$.data.caseName}}'
    local result3 = frame:preprocess(webDataCall)
    
    table.insert(output, "\n3. Test avec #get_web_data:")
    table.insert(output, "  Résultat: " .. result3)
    
    return table.concat(output, "\n")
end

-- Fonctions de débogage
function p.debugResult(frame)
    local d = p._fetchZoteroData(frame)
    if not d then return "Aucune donnée reçue" end
    local out = {}
    table.insert(out, "✔ Clé : " .. (d.key or ''))
    table.insert(out, "✔ Titre : " .. (d.caseName or ''))
    table.insert(out, "✔ Tribunal : " .. (d.court or ''))
    table.insert(out, "✔ Date : " .. (d.dateDecided or ''))
    table.insert(out, "✔ URL : " .. (d.url or ''))
    table.insert(out, "✔ Auteur : " .. (d.firstName or '') .. " " .. (d.lastName or ''))
    return table.concat(out, "\n")
end

-- Fonctions accessibles
function p.caseName(frame)
    local d = p._fetchZoteroData(frame)
    return d and d.caseName or ''
end

function p.dateDecided(frame)
    local d = p._fetchZoteroData(frame)
    return d and d.dateDecided or ''
end

function p.docketNumber(frame)
    local d = p._fetchZoteroData(frame)
    return d and d.docketNumber or ''
end

function p.history(frame)
    local d = p._fetchZoteroData(frame)
    return d and d.history or ''
end

function p.url(frame)
    local d = p._fetchZoteroData(frame)
    return d and d.url or ''
end

function p.court(frame)
    local d = p._fetchZoteroData(frame)
    return d and d.court or ''
end

function p.auteurPrenom(frame)
    local d = p._fetchZoteroData(frame)
    return d and d.firstName or ''
end

function p.auteurNom(frame)
    local d = p._fetchZoteroData(frame)
    return d and d.lastName or ''
end

-- Affichage de l'URL utilisée (pour vérification)
function p.debugUrl(frame)
    local itemKey = frame and frame.args[1] or ""
    return 'https://api.zotero.org/groups/4893620/items/' .. itemKey
end

return p