thedesk/app/js/userdata/his-data.js

644 lines
17 KiB
JavaScript
Raw Normal View History

2018-01-28 23:22:43 +11:00
//ユーザーデータ表示
//タイムライン
function utl(user, more, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-01-28 23:22:43 +11:00
if (user == "--now") {
var user = $('#his-data').attr("user-id");
}
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)!="misskey"){
2018-07-30 21:03:49 +10:00
if (more) {
var sid = $("#his-tl .cvo").last().attr("toot-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/accounts/" + user + "/statuses" +
plus;
var i={
method: 'GET',
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + at
}
}
}else{
var req={i:at}
if (more) {
var sid = $("#his-tl .cvo").last().attr("toot-id");
req.maxId=sid;
}
req.userId=user;
var start = "https://" + domain + "/api/users/notes"
var i={
method: 'POST',
headers: {
'content-type': 'application/json',
},
body:JSON.stringify(req)
}
2018-01-28 23:22:43 +11:00
}
2018-07-30 21:03:49 +10:00
fetch(start, i).then(function(response) {
2018-01-28 23:22:43 +11:00
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2018-09-11 04:59:44 +10:00
var templete = misskeyParse(json, '', acct_id, 'user');
2018-07-30 21:03:49 +10:00
}else{
2018-09-11 04:59:44 +10:00
var templete = parse(json, '', acct_id, 'user');
2018-07-30 21:03:49 +10:00
}
2018-03-31 13:39:06 +11:00
if(!json[0]){
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"<br>";
2018-03-31 13:39:06 +11:00
}
2018-01-28 23:22:43 +11:00
if (more) {
$("#his-tl-contents").append(templete);
} else {
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)!="misskey"){
2018-07-30 21:03:49 +10:00
pinutl(templete,user, acct_id)
}else{
$("#his-tl-contents").html(templete);
}
2018-01-28 23:22:43 +11:00
}
jQuery("time.timeago").timeago();
});
}
2018-03-27 13:39:35 +11:00
//ピン留めTL
function pinutl(before,user, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-03-27 13:39:35 +11:00
if (user == "--now") {
var user = $('#his-data').attr("user-id");
}
var plus = "?pinned=1";
var start = "https://" + domain + "/api/v1/accounts/" + user + "/statuses" +
plus
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) {
2019-02-01 03:30:25 +11:00
var templete = parse(json, 'pinned', acct_id,'user');
2018-03-31 13:39:06 +11:00
if(!json[0]){
2018-07-17 01:39:06 +10:00
templete="";
2018-03-31 13:39:06 +11:00
}
2018-09-05 01:04:56 +10:00
$("#his-tl-contents").html(templete+before);
2018-03-27 13:39:35 +11:00
jQuery("time.timeago").timeago();
});
}
2018-01-28 23:22:43 +11:00
//フォローリスト
function flw(user, more, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-01-28 23:22:43 +11:00
if (user == "--now") {
var user = $('#his-data').attr("user-id");
}
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2018-07-30 21:03:49 +10:00
var req={i:at}
if (more) {
var sid = $("#his-follow-list .cvo").last().attr("user-id");
req.maxId=sid;
}
req.userId=user;
var start = "https://" + domain + "/api/users/following"
var i={
method: 'POST',
headers: {
'content-type': 'application/json',
},
body:JSON.stringify(req)
}
}else{
if (more) {
var sid = $("#his-follow-list .cvo").last().attr("user-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/accounts/" + user + "/following" +
plus
var i={
method: 'GET',
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + at
2018-07-30 21:03:49 +10:00
}
}
2018-01-28 23:22:43 +11:00
}
2018-07-30 21:03:49 +10:00
fetch(start,i).then(function(response) {
2018-01-28 23:22:43 +11:00
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2018-07-30 21:03:49 +10:00
var templete = misskeyUserparse(json,'',acct_id);
}else{
var templete = userparse(json,'',acct_id);
}
if(templete==""){
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"<br>";
2018-03-31 13:39:06 +11:00
}
2018-01-28 23:22:43 +11:00
if (more) {
$("#his-follow-list-contents").append(templete);
} else {
$("#his-follow-list-contents").html(templete);
}
});
}
//フォロワーリスト
function fer(user, more, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-01-28 23:22:43 +11:00
if (user == "--now") {
var user = $('#his-data').attr("user-id");
}
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2018-07-30 21:03:49 +10:00
var req={i:at}
if (more) {
var sid = $("#his-follower-list .cvo").last().attr("user-id");
req.maxId=sid;
}
req.userId=user;
var start = "https://" + domain + "/api/users/followers"
var i={
method: 'POST',
headers: {
'content-type': 'application/json',
},
body:JSON.stringify(req)
}
}else{
if (more) {
var sid = $("#his-follower-list .cvo").last().attr("user-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/accounts/" + user + "/followers" +
plus
var i={
method: 'GET',
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + at
2018-07-30 21:03:49 +10:00
}
}
2018-01-28 23:22:43 +11:00
}
2018-07-30 21:03:49 +10:00
fetch(start, i).then(function(response) {
2018-01-28 23:22:43 +11:00
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2018-07-30 21:03:49 +10:00
var templete = misskeyUserparse(json,'',acct_id);
}else{
var templete = userparse(json,'',acct_id);
}
if(templete==""){
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"<br>";
2018-03-31 13:39:06 +11:00
}
2018-01-28 23:22:43 +11:00
if (more) {
$("#his-follower-list-contents").append(templete);
} else {
$("#his-follower-list-contents").html(templete);
}
});
}
//以下自分のみ
//お気に入り一覧
function showFav(more, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)!="misskey"){
2018-07-30 21:03:49 +10:00
if (more) {
var sid = $("#his-fav-list .cvo").last().attr("toot-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/favourites" + plus
var i={
method: 'GET',
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + at
}
}
}else{
var req={i:at}
if (more) {
var sid = $("#his-fav-list .cvo").last().attr("toot-id");
req.maxId=sid;
}
var start = "https://" + domain + "/api/i/favorites"
var i={
method: 'POST',
headers: {
'content-type': 'application/json',
},
body:JSON.stringify(req)
}
2018-01-28 23:22:43 +11:00
}
2018-07-30 21:03:49 +10:00
fetch(start, i).then(function(response) {
2018-01-28 23:22:43 +11:00
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)!="misskey"){
2018-09-11 04:59:44 +10:00
var templete = parse(json, '', acct_id,'user');
2018-07-30 21:03:49 +10:00
}else{
2018-09-11 04:59:44 +10:00
var templete = misskeyParse(json, '', acct_id,'user');
2018-07-30 21:03:49 +10:00
}
2018-03-31 13:39:06 +11:00
if(!json[0]){
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"<br>";
2018-03-31 13:39:06 +11:00
}
2018-01-28 23:22:43 +11:00
if (more) {
$("#his-fav-list-contents").append(templete);
} else {
$("#his-fav-list-contents").html(templete);
}
jQuery("time.timeago").timeago();
});
}
//ミュートリスト
function showMut(more, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2018-07-30 21:03:49 +10:00
var req={i:at}
if (more) {
var sid = $("#his-muting-list .cvo").last().attr("user-id");
req.maxId=sid;
}
var start = "https://" + domain + "/api/mute/list"
var i={
method: 'POST',
headers: {
'content-type': 'application/json',
},
body:JSON.stringify(req)
}
}else{
if (more) {
var sid = $("#his-muting-list .cvo").last().attr("user-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/mutes" + plus
var i={
method: 'GET',
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + at
2018-07-30 21:03:49 +10:00
}
}
2018-01-28 23:22:43 +11:00
}
2018-07-30 21:03:49 +10:00
fetch(start,i).then(function(response) {
2018-01-28 23:22:43 +11:00
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
2018-03-31 13:39:06 +11:00
if(!json[0]){
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"<br>";
2018-03-31 13:39:06 +11:00
}
2018-02-25 18:21:13 +11:00
var templete = userparse(json,'',acct_id);
2018-01-28 23:22:43 +11:00
if (more) {
$("#his-muting-list-contents").append(templete);
} else {
$("#his-muting-list-contents").html(templete);
}
});
}
//ブロックリスト
function showBlo(more, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2019-01-26 14:24:26 +11:00
$("#his-blocking-list-contents").html(lang.lang_hisdata_notonmisskey+"<br>");
2018-07-30 21:03:49 +10:00
return false;
}
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-01-28 23:22:43 +11:00
if (more) {
var sid = $("#his-blocking-list .cvo").last().attr("user-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/blocks" + plus
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) {
2018-03-31 13:39:06 +11:00
if(!json[0]){
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"<br>";
2018-03-31 13:39:06 +11:00
}
2018-02-25 18:21:13 +11:00
var templete = userparse(json,'',acct_id);
2018-01-28 23:22:43 +11:00
if (more) {
$("#his-blocking-list-contents").append(templete);
} else {
$("#his-blocking-list-contents").html(templete);
}
});
}
//フォロリクリスト
function showReq(more, acct_id) {
2018-07-30 21:03:49 +10:00
2018-01-28 23:22:43 +11:00
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2018-07-30 21:03:49 +10:00
var req={i:at}
if (more) {
var sid = $("#his-request-list .cvo").last().attr("user-id");
req.maxId=sid;
}
var start = "https://" + domain + "/following/requests/list"
var i={
method: 'POST',
headers: {
'content-type': 'application/json',
},
body:JSON.stringify(req)
}
}else{
if (more) {
var sid = $("#his-request-list .cvo").last().attr("user-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/follow_requests" + plus
var i={
method: 'GET',
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + at
2018-07-30 21:03:49 +10:00
}
}
2018-01-28 23:22:43 +11:00
}
2018-07-30 21:03:49 +10:00
fetch(start,i).then(function(response) {
2018-01-28 23:22:43 +11:00
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
2019-05-09 01:46:26 +10:00
if(localStorage.getItem("mode_" + domain)!="misskey"){
2019-05-16 01:01:54 +10:00
var templete = userparse(json, "request",acct_id);
2018-07-30 21:03:49 +10:00
}else{
2019-05-09 01:46:26 +10:00
var templete = misskeyUserparse(json, true,acct_id);
2018-07-30 21:03:49 +10:00
}
2018-03-31 13:39:06 +11:00
if(!json[0]){
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"<br>";
2018-03-31 13:39:06 +11:00
}
2018-01-28 23:22:43 +11:00
if (more) {
$("#his-request-list-contents").append(templete);
} else {
$("#his-request-list-contents").html(templete);
}
});
}
//ドメインブロックリスト
function showDom(more, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2019-01-26 14:24:26 +11:00
$("#his-domain-list-contents").html(lang.lang_hisdata_notonmisskey+"<br>");
2018-07-30 21:03:49 +10:00
return false;
}
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
2018-01-28 23:22:43 +11:00
if (more) {
var sid = $("#his-domain-list .cvo").last().attr("user-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/domain_blocks" + plus
fetch(start, {
method: 'GET',
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + at
},
//body: JSON.stringify({})
}).then(function(response) {
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
var templete = "";
2018-03-31 13:39:06 +11:00
if(!json[0]){
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"<br>";
2018-03-31 13:39:06 +11:00
}
2018-01-28 23:22:43 +11:00
Object.keys(json).forEach(function(key) {
var domain = json[key];
templete = templete + domain +
'<i class="material-icons gray pointer" onclick="domainblock(\'' +
domain + '\',\'DELETE\')">cancel</i>' +
'<div class="divider"></div>';
});
if (more) {
$("#his-domain-list-contents").append(templete);
} else {
$("#his-domain-list-contents").html(templete);
}
});
}
2018-07-07 03:51:48 +10:00
//フォローレコメンデーションリスト
function showFrl(more, acct_id) {
if (!acct_id) {
var acct_id = $('#his-data').attr("use-acct");
}
var domain = localStorage.getItem("domain_" + acct_id);
2018-08-23 03:29:39 +10:00
if(localStorage.getItem("mode_" + domain)=="misskey"){
2019-01-26 14:24:26 +11:00
$("#his-follow-recom-contents").html(lang.lang_hisdata_notonmisskey+"<br>");
2018-07-30 21:03:49 +10:00
return false;
}
2018-07-07 03:51:48 +10:00
var at = localStorage.getItem("acct_"+ acct_id + "_at");
if (more) {
var sid = $("#his-follow-recom-list .cvo").last().attr("user-id");
var plus = "?max_id=" + sid;
} else {
var plus = "";
}
var start = "https://" + domain + "/api/v1/suggestions" + plus
fetch(start, {
method: 'GET',
headers: {
'content-type': 'application/json',
'Authorization': 'Bearer ' + at
},
}).then(function(response) {
return response.json();
}).catch(function(error) {
2019-01-26 14:24:26 +11:00
$("#his-follow-recom-contents").html(lang.lang_details_nodata+"("+lang.lang_hisdata_frcreq+")<br>");
2018-07-07 03:51:48 +10:00
console.error(error);
}).then(function(json) {
if(!json[0]){
2019-05-19 16:17:05 +10:00
console.warn("No suggestions(recommend) data");
2019-01-26 14:24:26 +11:00
templete=lang.lang_details_nodata+"("+lang.lang_hisdata_frcwarn+")<br>";
2018-07-17 01:39:06 +10:00
}else{
var templete = userparse(json,'',acct_id);
2018-07-07 03:51:48 +10:00
}
2018-07-17 01:39:06 +10:00
2018-07-07 03:51:48 +10:00
if (more) {
$("#his-follow-recom-contents").append(templete);
} else {
$("#his-follow-recom-contents").html(templete);
}
});
}
2019-04-13 13:41:58 +10:00
//Keybase
function udAdd(start) {
fetch(start, {
method: 'GET',
headers: {
'Accept': 'application/json'
},
//body: JSON.stringify({})
}).then(function(response) {
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
var fields=json.attachment;
for(var i=0;i<fields.length;i++){
if(fields[i].type=="IdentityProof"){
if(fields[i].signatureAlgorithm=="keybase"){
2019-04-23 00:16:57 +10:00
var html='<a href="https://keybase.io/'+fields[i].name+'" target="_blank" class="cbadge teal waves-effect" style="max-width:200px;" title="'+lang.lang_hisdata_key.replace("{{set}}",escapeHTML(fields[i].signatureAlgorithm))+'"><i class="fas fa-key" aria-hidden="true"></i>'+escapeHTML(fields[i].signatureAlgorithm)+':'+escapeHTML(fields[i].name)+'</a>';
2019-04-13 13:41:58 +10:00
}else{
2019-04-23 00:16:57 +10:00
var html='<span class="cbadge teal" style="max-width:200px;" title="'+lang.lang_hisdata_key.replace("{{set}}",escapeHTML(fields[i].signatureAlgorithm))+'"><i class="fas fa-key" aria-hidden="true"></i>'+escapeHTML(fields[i].signatureAlgorithm)+':'+escapeHTML(fields[i].name)+'</span>';
2019-04-13 13:41:58 +10:00
}
$("#his-proof-prof").append(html)
}
}
});
2019-05-06 02:28:00 +10:00
fetch("https://notestock.osa-p.net/api/v1/isstock.json?id="+start.replace("@","users/"), {
method: 'GET',
headers: {
'Accept': 'application/json'
},
}).then(function(response) {
return response.json();
}).catch(function(error) {
todo(error);
console.error(error);
}).then(function(json) {
if(json.user.public_view){
var html='<a href="'+json.user.url+'" target="_blank" class="cbadge purple waves-effect" style="max-width:200px;" title="Notestock">Notestock</a>';
$("#his-proof-prof").append(html)
}
});
2019-04-13 13:51:54 +10:00
2019-04-13 13:41:58 +10:00
}
2018-07-07 03:51:48 +10:00
2018-06-12 01:44:28 +10:00
//ユーザーマッチングリスト
function showMat() {
2018-07-07 03:51:48 +10:00
2019-01-26 14:24:26 +11:00
$("#his-matching-list-contents").html(lang.lang_hisdata_taketime);
2018-06-12 01:44:28 +10:00
var full=$("#his-acct").attr("fullname");
var acct_id=$("#his-data").attr("use-acct");
full=full.split("@");
var start = "https://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-filtered-api.cgi?"+full[1]+"+" + full[0];
2018-06-12 01:44:28 +10: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) {
var templete="";
Object.keys(json).forEach(function(key) {
var user = json[key];
templete = templete +
'<div class="" style="padding-top:5px;">' +
'<div style="padding:0; margin:0; width:400px; max-width:100%; display:flex; align-items:flex-end;">' +
'<div style="flex-basis:40px;"><a onclick="udgEx(\'' + user.user + '\',' +
acct_id + ');" user="' + user.user + '" class="udg">' +
'<img src="' + user.avatar + '" width="40" class="prof-img" user="' + user.user + '"></a></div>' +
'<div style="flex-grow:3; overflow: hidden;white-space: nowrap;text-overflow: ellipsis;user-select:auto; cursor:text;"><big>' +
escapeHTML(user.screen_name) + '</big></div>' +
'<div class="sml gray" style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;user-select:auto; cursor:text;"> @' +
user.user + '@'+user.host+'</div>' +
'</div>' +
'<div class="divider"></div>' +
'</div>' +
'</div>';
});
2018-09-05 01:04:56 +10:00
$("#his-matching-list").css("height",$("#his-float-data").height()-$("#his-basic-prof").height()-$("#his-des").height()-$("#his-plus-action").height()+"px");
2018-06-12 01:44:28 +10:00
$("#his-matching-list-contents").html(templete);
});
}