TUM-Moodle Login Automator BETA

Automated login for tum.moodle.de. Also performs login process on Shibboleth-LRZ with your TUM (Technnische Universitaet Muenchen) credentials.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            TUM-Moodle Login Automator BETA
// @version         0.3
// @description     Automated login for tum.moodle.de. Also performs login process on Shibboleth-LRZ with your TUM (Technnische Universitaet Muenchen) credentials.
// @author          zsewa
// @namespace       https://greasyfork.org/users/57483

// @match           https://greasyfork.org/de/scripts/34008-tum-everywere-login-beta
// @match           https://www.moodle.tum.de/
// @match           https://campus.tum.de/tumonline/webnav.ini
// @match           https://tumidp.lrz.de/idp/profile/SAML2/Redirect/SSO*

// @require         https://code.jquery.com/jquery-3.1.0.min.js

// @grant GM_setValue
// @grant GM_getValue
// @grant GM_deleteValue
// @grant GM_registerMenuCommand

// ==/UserScript==



(function() {
    GM_registerMenuCommand('[TEL] Reset credentials', function() { GM_deleteValue('tel_credentials'); window.location.reload(); } );

    //check if credentials are saved, triggered on first startup
    if(GM_getValue('tel_credentials', 0) === 0){
        first_startup();
    }
    
    //getting values for webpage check
    var domain = location.href;
    
    //__Page redirect or login function__
    //TUM-Moodle Startpage
    if(domain.indexOf('https://www.moodle.tum.de/') != -1){
        location.href='https://www.moodle.tum.de/Shibboleth.sso/Login?providerId=https%3A%2F%2Ftumidp.lrz.de%2Fidp%2Fshibboleth&target=https%3A%2F%2Fwww.moodle.tum.de%2Fauth%2Fshibboleth%2Findex.php';
    }

    /*
    //Campus Online - NOT WORKING
    if(domain.indexOf('https://campus.tum.de/tumonline/webnav.ini') != -1){
        alert('Campus Online');
        detail.location = 'wbanmeldung.durchfuehren';
        location.href = "javascript:void(submit_login());";
    }
    */

    //Shibboleth Login on LRZ
    if(domain.indexOf('tumidp.lrz.de/idp/profile/SAML2') != -1){
        login_via_shibboleth();
    }
    
})();


function first_startup() {
    //set-up dialog
    alert('Welcome. You triggered "TUM Everywere Login BETA" for the first time. Please perform the setup now. Have your TUM credentials ready. Your credentials are stored local.');
    var username = prompt('Provide your username. e.g.: "ga12abc"');
    var password = prompt('Provide your password.');
    //var tel_credentials = []
    var tel_credentials = [username, password];
    GM_setValue('tel_credentials', tel_credentials);
    console.log( 'Saved credentials: '+GM_getValue('tel_credentials') );
}

function login_via_shibboleth() {
    var username = GM_getValue('tel_credentials')[0];
    var password = GM_getValue('tel_credentials')[1];
    
    $('input#username').val(username);
    $('input#password').val(password);
    $('button.btnLogin').click();
}