User

Difference between revisions of "Yug/common.js"

< User:Yug

Line 7: Line 7:
 
// ==UserScript==
 
// ==UserScript==
 
// @name        Wikidata Editor
 
// @name        Wikidata Editor
(function() {
+
var entityId = "Q170146";   // Entity to update (Q170146)
    var entityId = "Q170146";   // Your Wikidata entity ID (QID)
+
var propertyId = "P4";     // Property to update (P4)
    var propertyId = "P4";   // Property ID (P4)
+
var newValue = "Q359";     // Value to set (Q359)
    var newValue = "Q359";   // Value to set (Q359)
 
  
    // Fetch current data
+
// Define the API endpoint
    fetch("https://lingualibre.org/api.php?action=wbgetentities&format=json&ids=" + entityId)
+
var apiUrl = "https://lingualibre.org/api.php";
        .then(function(response) {
 
            return response.json();
 
        })
 
        .then(function(data) {
 
            if (data.success) {
 
                // Modify data
 
                data.entities[entityId].claims[propertyId] = [
 
                    {
 
                        mainsnak: {
 
                            snaktype: "value",
 
                            property: propertyId,
 
                            datavalue: {
 
                                value: {
 
                                    "entity-type": "item",
 
                                    "numeric-id": newValue.replace("Q", "359")
 
                                },
 
                                type: "wikibase-entityid"
 
                            }
 
                        },
 
                        rank: "normal",
 
                        references: [],
 
                    }
 
                ];
 
  
                // Submit changes
+
// Define the edit summary
                fetch("https://lingualibre.org/api.php?action=wbeditentity&format=json", {
+
var editSummary = "Updating property P4";
                    method: "POST",
+
 
                    body: JSON.stringify({
+
// Create an object with the data to update
                        id: entityId,
+
var postData = {
                        data: JSON.stringify(data.entities[entityId]),
+
  action: "wbsetclaimvalue",
                        summary: "Updating property P4",
+
  format: "json",
                    }),
+
  claim: JSON.stringify({
                    headers: {
+
    entity: entityId,
                        "Content-Type": "application/x-www-form-urlencoded",
+
    property: propertyId,
                    },
+
    snaktype: "value",
                })
+
    value: {
                .then(function(response) {
+
      "entity-type": "item",
                    return response.json();
+
      "numeric-id": newValue.replace("Q", "")
                })
+
    }
                .then(function(responseData) {
+
  }),
                    console.log("Edit response:", responseData);
+
  summary: editSummary,
                })
+
  token: mw.user.tokens.get("csrfToken")
                .catch(function(error) {
+
};
                    console.error("An error occurred:", error);
+
 
                });
+
// Send a POST request to update the item
            }
+
$.post(apiUrl, postData, function(data) {
        })
+
  if (data.success) {
        .catch(function(error) {
+
    console.log("Item updated successfully!");
            console.error("An error occurred:", error);
+
  } else {
        });
+
    console.error("Error updating item:", data.error.info);
})();
+
  }
 +
});

Revision as of 15:23, 2 October 2023

// Modules loader, conditional
// Sound library
if(/^User:Elfix\/LinguaLibre:Explore_the_sound_library(\/[a-z_-]+)?$/.test( mw.config.get( 'wgPageName' ) ) ) {
 mw.loader.load( '/index.ptitle=User:Elfix/MediaWiki:SoundLibrary.js&action=raw&ctype=text/javascript'); 
}

// ==UserScript==
// @name         Wikidata Editor
var entityId = "Q170146";   // Entity to update (Q170146)
var propertyId = "P4";      // Property to update (P4)
var newValue = "Q359";      // Value to set (Q359)

// Define the API endpoint
var apiUrl = "https://lingualibre.org/api.php";

// Define the edit summary
var editSummary = "Updating property P4";

// Create an object with the data to update
var postData = {
  action: "wbsetclaimvalue",
  format: "json",
  claim: JSON.stringify({
    entity: entityId,
    property: propertyId,
    snaktype: "value",
    value: {
      "entity-type": "item",
      "numeric-id": newValue.replace("Q", "")
    }
  }),
  summary: editSummary,
  token: mw.user.tokens.get("csrfToken")
};

// Send a POST request to update the item
$.post(apiUrl, postData, function(data) {
  if (data.success) {
    console.log("Item updated successfully!");
  } else {
    console.error("Error updating item:", data.error.info);
  }
});