Raw Source
QuangDuung / AutoĐKHọcPhần

// ==UserScript==
// @name         AutoĐKHọcPhần
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Cố gắng đăng kí học phần!
// @author       HuuDuy
// @include      http://portal*.hcmus.edu.vn/
// @include      http://portal*.hcmus.edu.vn/Logoff.aspx
// @include      http://portal*.hcmus.edu.vn/Login.aspx
// @include      http://portal*.hcmus.edu.vn/Login.aspx*
// @include      http://portal*.hcmus.edu.vn/Default.aspx?pid=62
// @include      http://portal*.hcmus.edu.vn/DangKyHocPhan.aspx
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
// @updateURL    https://openuserjs.org/meta/huuduy005/AutoĐKHọcPhần.meta.js
// ==/UserScript==

var id = ""; //mssv
var pass = ""; //password

var mWish = ["CTT330", "CTT124", "CTT478", "CTT634", "CTT633", "CTT538", "CTT474"]; //danh sách mã học phần muốn ĐK
//Ví dụ, vế mã học phần lên xem danh sách môn học để biết chi tiết
//var mWish = ["CTT506", "CTT522", "CTT124", "CTT504", "CTT524"];

function login() {
    $("#ctl00_ContentPlaceHolder1_txtUsername").val(id); //mssv
    $("#ctl00_ContentPlaceHolder1_txtPassword").val(pass); //pass
    console.log("Điền thông tin xong");
    $('#ctl00_ContentPlaceHolder1_btnLogin').click();
    console.log("Đang đăng nhập!");
}

(function() {
    'use strict';
    var mWeb = document.URL;
    console.log(mWeb);
    var check = $(document).text();
    if (check === "The service is unavailable.") {
        location.assign("/");
        return;
    }

    if (mWeb.match(/Login.aspx/)) {
        $(document).ready(function() {
            login();
        });
    } else if (mWeb.match(/http:\/\/portal\d.hcmus.edu.vn\/Default.aspx\?pid=62/) !== null || document.title === "Dashboard") {
        location.assign("/DangKyHocPhan.aspx");
    }
})();