Send to Real-Debrid

Add a button next to each magnet link to send it to Real-Debrid, with user-friendly API token setup and enhanced error handling

Από την 16/01/2024. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Send to Real-Debrid
// @namespace    http://tampermonkey.net/
// @version      0.2.5
// @description  Add a button next to each magnet link to send it to Real-Debrid, with user-friendly API token setup and enhanced error handling
// @author       dlee2
// @license      MIT
// @match        *://*.nyaa.si/*
// @grant        GM_xmlhttpRequest
// @grant        GM_setValue
// @grant        GM_getValue
// ==/UserScript==

(function () {
    'use strict';

    function getApiToken() {
        let apiToken = GM_getValue('apiToken');
        if (!apiToken) {
            apiToken = prompt('Enter your Real-Debrid API token:', '');
            if (apiToken) {
                GM_setValue('apiToken', apiToken);
            } else {
                alert('No API token provided. Set it later by clicking a "Send to RD" button.');
                return null;
            }
        }
        return apiToken;
    }

    function handleApiError(response) {
        let errorMsg = 'Error occurred while sending request to Real-Debrid.';
        if (response.status === 401) {
            errorMsg = 'Invalid or expired API token.';
        } else if (response.status === 403) {
            errorMsg = 'Permission denied. Account might be locked.';
        }
        alert(errorMsg);
        console.error('Real-Debrid API Error:', response.status, response.responseText);
    }

    function sendToRealDebrid(magnetLink) {
        const API_TOKEN = getApiToken();
        if (!API_TOKEN) {
            return;
        }

        GM_xmlhttpRequest({
            method: "POST",
            url: "https://api.real-debrid.com/rest/1.0/torrents/addMagnet",
            headers: {
                "Authorization": `Bearer ${API_TOKEN}`,
                "Content-Type": "application/x-www-form-urlencoded"
            },
            data: "magnet=" + encodeURIComponent(magnetLink),
            onload: function (response) {
                if (response.status === 200) {
                    alert("Magnet link successfully sent to Real-Debrid!");
                } else {
                    handleApiError(response);
                }
            },
            onerror: function (response) {
                handleApiError(response);
            }
        });
    }

    function createSendButton(magnetLink) {
        let button = document.createElement('button');
        button.textContent = 'RD';
        button.style.marginLeft = '10px';
        button.addEventListener('click', function () {
            sendToRealDebrid(magnetLink);
        });
        return button;
    }

    function addSendButtons() {
        let magnetLinks = document.querySelectorAll('a[href^="magnet:"]');
        magnetLinks.forEach(link => {
            let sendButton = createSendButton(link.href);
            link.parentNode.insertBefore(sendButton, link.nextSibling);
        });
    }

    addSendButtons();
})();