InstaSynchP Bump Command

Command to bump a video from a user or url

目前為 2014-11-22 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        InstaSynchP Bump Command
// @namespace   InstaSynchP
// @description Command to bump a video from a user or url

// @version     1.0.1
// @author      Zod-
// @source      https://github.com/Zod-/InstaSynchP-Bump-Command
// @license     MIT

// @include     http://*.instasynch.com/*
// @include     http://instasynch.com/*
// @include     http://*.instasync.com/*
// @include     http://instasync.com/*
// @grant       none
// @run-at      document-start

// @require     https://greasyfork.org/scripts/5647-instasynchp-library/code/InstaSynchP%20Library.js
// ==/UserScript==

function Bump(version) {
    "use strict";
    this.version = version;
    this.name = "InstaSynchP Bump Command";
    this.commands = {
        "'bump": {
            'hasArguments': true,
            'type': 'mod',
            'reference': this,
            'description': 'Bumps a video from a user or the url. Position can be specified',
            'callback': this.execute
        }
    };
    this.bumpInfo = undefined;
    this.bumpTo = undefined;
}

Bump.prototype.executeOnce = function () {
    var th = this;
    //bind event for bumping an url
    events.on(th, 'AddVideo', function (vidinfo) {
        //bump the video after it got added
        if (videoInfoEquals(vidinfo.info, th.bumpInfo)) {
            window.global.sendcmd('move', {
                info: vidinfo.info,
                position: th.bumpTo
            });
            th.bumpInfo = undefined;
            th.bumpTo = undefined;
        }
    });

};

Bump.prototype.execute = function (opts) {
    "use strict";
    var th = this,
        user = opts.usernames[0],
        i,
        activeIndex = activeVideoIndex(),
        bumpIndex = -1;
    th.bumpTo = opts.numbers.length > 0 ? opts.numbers[0] : activeVideoIndex() + 1;
    th.bumpInfo = opts.videos[0];

    //return if nothing to bump got found
    if (!user && !th.bumpInfo) {
        addSystemMessage('Nothing found to bump: \'bump [user] [url] [position]');
        return;
    }

    //search the video to be bumped
    for (i = window.playlist.length - 1; i >= 0; i -= 1) {
        if (videoInfoEquals(window.playlist[i].info, th.bumpInfo) ||
            (user && window.playlist[i].addedby.toLowerCase() === user.toLowerCase())) {
            bumpIndex = i;
            break;
        }
    }
    //video not found
    if (bumpIndex === -1) {
        //no link provided
        if (!th.bumpInfo) {
            addSystemMessage("The user didn't add any videos");
        } else {
            //add the video and bump it in the addVideo event
            window.global.sendcmd('add', {
                URL: urlParser.create(th.bumpInfo)
            });
        }
    } else {
        window.global.sendcmd('move', {
            info: window.playlist[bumpIndex].info,
            position: th.bumpTo
        });
        th.bumpTo = undefined;
        th.bumpInfo = undefined;
    }
};

window.plugins = window.plugins || {};
window.plugins.bump = new Bump('1.0.1');