2018-01-28 23:22:43 +11:00
|
|
|
/*ログイン処理・認証までのJS*/
|
|
|
|
//最初に読むやつ
|
2018-02-09 03:43:11 +11:00
|
|
|
//アスタルテ判定初期化
|
|
|
|
localStorage.removeItem("kirishima")
|
2018-02-19 04:41:25 +11:00
|
|
|
localStorage.removeItem("image");
|
2018-01-28 23:22:43 +11:00
|
|
|
function ck() {
|
|
|
|
var domain = localStorage.getItem("domain_0");
|
|
|
|
var at = localStorage.getItem(domain + "_at");
|
2018-02-18 16:43:11 +11:00
|
|
|
//コード受信
|
|
|
|
if(location.search){
|
|
|
|
var m = location.search.match(/\?mode=([a-zA-Z-0-9]+)\&code=([a-zA-Z-0-9]+)/);
|
|
|
|
var mode=m[1];
|
|
|
|
var codex=m[2];
|
|
|
|
if(mode=="manager" || mode=="login"){
|
|
|
|
code(codex,mode);
|
|
|
|
}else{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-01-28 23:22:43 +11:00
|
|
|
if (at) {
|
2018-02-09 03:43:11 +11:00
|
|
|
ckdb(0);
|
2018-01-28 23:22:43 +11:00
|
|
|
$("#tl").show();
|
|
|
|
parseColumn();
|
|
|
|
multi();
|
|
|
|
} else {
|
|
|
|
$("#masara").show();
|
|
|
|
console.log("Please Login");
|
|
|
|
support();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ck();
|
|
|
|
//ログインポップアップ
|
|
|
|
function login(url) {
|
|
|
|
var start = "https://" + url + "/api/v1/apps";
|
|
|
|
fetch(start, {
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/json'
|
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
scopes: 'read write follow',
|
|
|
|
client_name: "TheDesk(PC)",
|
2018-02-18 16:43:11 +11:00
|
|
|
redirect_uris: 'thedesk://login',
|
2018-02-10 02:43:15 +11:00
|
|
|
website: "https://thedesk.top"
|
2018-01-28 23:22:43 +11:00
|
|
|
})
|
|
|
|
}).then(function(response) {
|
|
|
|
return response.json();
|
|
|
|
}).catch(function(error) {
|
|
|
|
todo(error);
|
|
|
|
console.error(error);
|
|
|
|
}).then(function(json) {
|
|
|
|
var auth = "https://" + url + "/oauth/authorize?client_id=" + json[
|
|
|
|
"client_id"] + "&client_secret=" + json["client_secret"] +
|
2018-02-18 16:43:11 +11:00
|
|
|
"&response_type=code&redirect_uri=thedesk://login&scope=read+write+follow";
|
2018-01-28 23:22:43 +11:00
|
|
|
localStorage.setItem("domain_" + acct_id, url);
|
|
|
|
localStorage.setItem("client_id", json["client_id"]);
|
|
|
|
localStorage.setItem("client_secret", json["client_secret"]);
|
|
|
|
$("#auth").show();
|
|
|
|
$("#masara").hide();
|
2018-01-31 03:43:01 +11:00
|
|
|
const {
|
|
|
|
shell
|
|
|
|
} = require('electron');
|
|
|
|
|
2018-02-18 16:43:11 +11:00
|
|
|
shell.openExternal(auth);
|
|
|
|
var electron = require("electron");
|
|
|
|
var ipc = electron.ipcRenderer;
|
|
|
|
ipc.send('quit', 'go');
|
2018-01-28 23:22:43 +11:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
//テキストボックスにURL入れた
|
|
|
|
function instance() {
|
|
|
|
var url = $("#url").val();
|
|
|
|
login(url);
|
|
|
|
}
|
|
|
|
|
2018-02-18 16:43:11 +11:00
|
|
|
|
2018-01-28 23:22:43 +11:00
|
|
|
//コードを入れた後認証
|
2018-02-18 16:43:11 +11:00
|
|
|
function code(code,mode) {
|
|
|
|
if(!code){
|
|
|
|
var code = $("#code").val();
|
|
|
|
}
|
|
|
|
if(localStorage.getItem("domain_tmp")){
|
|
|
|
var url = localStorage.getItem("domain_tmp");
|
|
|
|
}else{
|
|
|
|
var url = localStorage.getItem("domain_" + acct_id);
|
|
|
|
}
|
2018-01-28 23:22:43 +11:00
|
|
|
var start = "https://" + url + "/oauth/token";
|
|
|
|
var id = localStorage.getItem("client_id");
|
|
|
|
var secret = localStorage.getItem("client_secret");
|
|
|
|
fetch(start, {
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/json'
|
|
|
|
},
|
|
|
|
body: JSON.stringify({
|
|
|
|
grant_type: "authorization_code",
|
2018-02-18 16:43:11 +11:00
|
|
|
redirect_uri: "thedesk://"+mode,
|
2018-01-28 23:22:43 +11:00
|
|
|
client_id: id,
|
|
|
|
client_secret: secret,
|
|
|
|
code: code
|
|
|
|
})
|
|
|
|
}).then(function(response) {
|
|
|
|
return response.json();
|
|
|
|
}).catch(function(error) {
|
|
|
|
todo(error);
|
|
|
|
console.error(error);
|
|
|
|
}).then(function(json) {
|
2018-02-18 16:43:11 +11:00
|
|
|
todo(json);
|
2018-01-28 23:22:43 +11:00
|
|
|
if (json["access_token"]) {
|
|
|
|
localStorage.setItem(url + "_at", json["access_token"]);
|
2018-02-18 16:43:11 +11:00
|
|
|
if(mode=="manager"){
|
|
|
|
getdataAdv(url, json["access_token"]);
|
|
|
|
}else{
|
|
|
|
getdata();
|
|
|
|
}
|
|
|
|
|
2018-01-28 23:22:43 +11:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-02-18 16:43:11 +11:00
|
|
|
//ユーザーデータ取得(最初)
|
2018-01-28 23:22:43 +11:00
|
|
|
function getdata() {
|
|
|
|
var acct_id = 0;
|
|
|
|
var domain = localStorage.getItem("domain_" + acct_id);
|
|
|
|
var at = localStorage.getItem(domain + "_at");
|
|
|
|
var start = "https://" + domain + "/api/v1/accounts/verify_credentials";
|
|
|
|
fetch(start, {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/json',
|
|
|
|
'Authorization': 'Bearer ' + at
|
|
|
|
},
|
|
|
|
}).then(function(response) {
|
|
|
|
return response.json();
|
|
|
|
}).catch(function(error) {
|
|
|
|
todo(error);
|
|
|
|
console.error(error);
|
|
|
|
}).then(function(json) {
|
|
|
|
console.log(json);
|
|
|
|
if (json.error) {
|
|
|
|
console.error("Error:" + json.error);
|
|
|
|
Materialize.toast("エラーが発生しました。しばらく待ってから再起動してください。Error:" + json.error,
|
|
|
|
5000);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var obj = [{
|
|
|
|
at: at,
|
|
|
|
name: json["display_name"],
|
|
|
|
domain: domain,
|
|
|
|
user: json["acct"],
|
|
|
|
prof: json["avatar"]
|
|
|
|
}];
|
|
|
|
var json = JSON.stringify(obj);
|
|
|
|
console.log(obj);
|
|
|
|
localStorage.setItem("multi", json);
|
|
|
|
localStorage.setItem("name_" + acct_id, json["display_name"]);
|
|
|
|
localStorage.setItem("user_" + acct_id, json["acct"]);
|
|
|
|
localStorage.setItem("user-id_" + acct_id, json["id"]);
|
|
|
|
localStorage.setItem("prof_" + acct_id, json["avatar"]);
|
2018-02-18 16:43:11 +11:00
|
|
|
$("#masara").hide();
|
2018-01-28 23:22:43 +11:00
|
|
|
$("#auth").hide();
|
|
|
|
$("#tl").show();
|
|
|
|
parseColumn()
|
|
|
|
ckdb();
|
|
|
|
});
|
|
|
|
}
|
2018-02-18 16:43:11 +11:00
|
|
|
//ユーザーデータ取得(追加)
|
|
|
|
function getdataAdv(domain, at) {
|
|
|
|
var start = "https://" + domain + "/api/v1/accounts/verify_credentials";
|
|
|
|
fetch(start, {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/json',
|
|
|
|
'Authorization': 'Bearer ' + at
|
|
|
|
},
|
|
|
|
}).then(function(response) {
|
|
|
|
return response.json();
|
|
|
|
}).catch(function(error) {
|
|
|
|
todo(error);
|
|
|
|
console.error(error);
|
|
|
|
}).then(function(json) {
|
|
|
|
console.log(json);
|
|
|
|
if (json.error) {
|
|
|
|
console.error("Error:" + json.error);
|
|
|
|
Materialize.toast("エラーが発生しました。しばらく待ってから再起動してください。Error:" + json.error,
|
|
|
|
5000);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var add = {
|
|
|
|
at: at,
|
|
|
|
name: json["display_name"],
|
|
|
|
domain: domain,
|
|
|
|
user: json["acct"],
|
|
|
|
prof: json["avatar"],
|
|
|
|
id: json["id"]
|
|
|
|
};
|
|
|
|
var multi = localStorage.getItem("multi");
|
|
|
|
var obj = JSON.parse(multi);
|
|
|
|
var target = obj.lengtth;
|
|
|
|
obj.push(add);
|
|
|
|
localStorage.setItem("name_" + target, json["display_name"]);
|
|
|
|
localStorage.setItem("user_" + target, json["acct"]);
|
|
|
|
localStorage.setItem("user-id_" + target, json["id"]);
|
|
|
|
localStorage.setItem("prof_" + target, json["avatar"]);
|
|
|
|
console.log(obj);
|
|
|
|
var json = JSON.stringify(obj);
|
|
|
|
localStorage.setItem("multi", json);
|
|
|
|
location.href="index.html";
|
|
|
|
});
|
|
|
|
}
|
2018-01-28 23:22:43 +11:00
|
|
|
|
|
|
|
//TheDesk独自のマストドンDBでMarkdownやBBCodeの対応、文字数制限をチェック
|
2018-02-09 03:43:11 +11:00
|
|
|
function ckdb(acct_id) {
|
2018-01-28 23:22:43 +11:00
|
|
|
var domain = localStorage.getItem("domain_" + acct_id);
|
2018-02-09 03:43:11 +11:00
|
|
|
if(domain=="kirishima.cloud"){
|
|
|
|
localStorage.setItem("kirishima", "true");
|
|
|
|
$("#ranking-btn").show();
|
|
|
|
}
|
2018-01-28 23:22:43 +11:00
|
|
|
var at = localStorage.getItem(domain + "_at");
|
|
|
|
var bbcode = domain + "_bbcode";
|
|
|
|
var letters = domain + "_letters";
|
2018-02-10 02:43:15 +11:00
|
|
|
var start = "https://dl.thedesk.top/mastodon_data.json";
|
2018-01-28 23:22:43 +11:00
|
|
|
fetch(start, {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/json'
|
|
|
|
},
|
|
|
|
}).then(function(response) {
|
|
|
|
return response.json();
|
|
|
|
}).catch(function(error) {
|
|
|
|
todo(error);
|
|
|
|
console.error(error);
|
|
|
|
}).then(function(json) {
|
|
|
|
console.log(json);
|
|
|
|
console.log(json[letters]);
|
|
|
|
if (json[bbcode]) {
|
|
|
|
if (json[bbcode] == "enabled") {
|
2018-02-09 03:43:11 +11:00
|
|
|
localStorage.setItem("bb_" + acct_id, "true");
|
2018-01-28 23:22:43 +11:00
|
|
|
} else {
|
2018-02-09 03:43:11 +11:00
|
|
|
localStorage.removeItem("bb_" + acct_id);
|
2018-01-28 23:22:43 +11:00
|
|
|
$("[data-activates='bbcode']").addClass("disabled");
|
|
|
|
$("[data-activates='bbcode']").prop("disabled", true);
|
|
|
|
}
|
|
|
|
} else {
|
2018-02-09 03:43:11 +11:00
|
|
|
localStorage.removeItem("bb_" + acct_id);
|
2018-01-28 23:22:43 +11:00
|
|
|
$("[data-activates='bbcode']").addClass("disabled");
|
|
|
|
$("[data-activates='bbcode']").addClass("disabled", true);
|
|
|
|
}
|
|
|
|
if (json[letters]) {
|
2018-02-18 17:02:14 +11:00
|
|
|
if($("#textarea").attr("data-length")<json[letters]){
|
|
|
|
$("#textarea").attr("data-length", json[letters]);
|
|
|
|
}
|
2018-01-28 23:22:43 +11:00
|
|
|
} else {}
|
|
|
|
if (json[domain + "_markdown"] == "enabled") {
|
2018-02-09 03:43:11 +11:00
|
|
|
localStorage.setItem("md_" + acct_id, "true");
|
2018-01-28 23:22:43 +11:00
|
|
|
$(".markdown").show();
|
2018-02-09 03:43:11 +11:00
|
|
|
}else{
|
|
|
|
localStorage.removeItem("bb_" + acct_id);
|
2018-01-28 23:22:43 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
//サポートインスタンス取得
|
|
|
|
function support() {
|
2018-02-10 02:43:15 +11:00
|
|
|
var start = "https://dl.thedesk.top/mastodon_data.json";
|
2018-01-28 23:22:43 +11:00
|
|
|
fetch(start, {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
'content-type': 'application/json'
|
|
|
|
},
|
|
|
|
//body: JSON.stringify({})
|
|
|
|
}).then(function(response) {
|
|
|
|
return response.json();
|
|
|
|
}).catch(function(error) {
|
|
|
|
todo(error);
|
|
|
|
console.error(error);
|
|
|
|
}).then(function(json) {
|
|
|
|
console.log(json);
|
|
|
|
Object.keys(json).forEach(function(key) {
|
|
|
|
var instance = json[key];
|
|
|
|
if (instance == "instance") {
|
|
|
|
templete = '<button class="btn waves-effect" onclick="login(\'' + key +
|
|
|
|
'\')">' + json[key + "_name"] + '(' + key + ')</button>';
|
|
|
|
$("#support").append(templete);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
//アカウントを選択…を実装
|
|
|
|
function multi() {
|
|
|
|
var multi = localStorage.getItem("multi");
|
|
|
|
if (!multi) {
|
|
|
|
var obj = [{
|
|
|
|
at: localStorage.getItem(localStorage.getItem("domain_" + acct_id) + "_at"),
|
|
|
|
name: localStorage.getItem("name_" + acct_id),
|
|
|
|
domain: localStorage.getItem("domain_" + acct_id),
|
|
|
|
user: localStorage.getItem("user_" + acct_id),
|
|
|
|
prof: localStorage.getItem("prof_" + acct_id)
|
|
|
|
}];
|
|
|
|
var json = JSON.stringify(obj);
|
|
|
|
localStorage.setItem("multi", json);
|
|
|
|
} else {
|
|
|
|
var obj = JSON.parse(multi);
|
|
|
|
}
|
|
|
|
var templete;
|
|
|
|
var last = localStorage.getItem("last-use");
|
|
|
|
var sel;
|
|
|
|
Object.keys(obj).forEach(function(key) {
|
|
|
|
var acct = obj[key];
|
|
|
|
var list = key * 1 + 1;
|
|
|
|
if (key == last) {
|
|
|
|
sel = "selected";
|
|
|
|
} else {
|
|
|
|
sel = "";
|
|
|
|
}
|
|
|
|
templete = '<option value="' + key + '" data-icon="' + acct.prof +
|
|
|
|
'" class="left circle" ' + sel + '>' + acct.user + '@' + acct.domain +
|
|
|
|
'</option>';
|
|
|
|
$(".acct-sel").append(templete);
|
|
|
|
$('select').material_select('update');
|
|
|
|
});
|
|
|
|
}
|
2018-02-18 16:43:11 +11:00
|
|
|
|