thedesk/app/js/login/login.js

261 lines
7.2 KiB
JavaScript
Raw Normal View History

2018-01-28 21:22:43 +09:00
/*ログイン処理・認証までのJS*/
//最初に読むやつ
2018-03-31 11:39:06 +09:00
localStorage.removeItem('kirishima')
localStorage.removeItem('quoters')
localStorage.removeItem('imas')
2020-07-10 22:33:12 +09:00
//stable, 固定タグのことらしい。ふざけるな。
localStorage.removeItem('stable')
2020-07-12 00:48:15 +09:00
const acctList = JSON.parse(localStorage.getItem('multi'))
2020-07-10 22:33:12 +09:00
2018-01-28 21:22:43 +09:00
function ck() {
2020-07-10 22:33:12 +09:00
const main = localStorage.getItem('main')
2019-05-19 16:39:30 +09:00
if (!main) {
2020-07-12 00:48:15 +09:00
localStorage.setItem('main', '0')
2018-05-20 15:17:10 +09:00
}
2019-11-04 01:10:06 +09:00
2018-02-18 14:43:11 +09:00
//コード受信
2019-05-19 16:39:30 +09:00
if (location.search) {
2020-07-10 22:33:12 +09:00
const m = location.search.match(/\?mode=([a-zA-Z-0-9]+)\&code=(.+)/)
const mode = m[1]
const codex = m[2]
if (mode == 'manager' || mode == 'login') {
code(codex, mode)
2019-05-19 16:39:30 +09:00
} else {
2018-02-18 14:43:11 +09:00
}
}
2020-07-10 22:33:12 +09:00
const multi = localStorage.getItem('multi')
if (!multi || multi == '[]') {
2020-07-10 22:33:12 +09:00
const date = new Date()
localStorage.setItem('showSupportMe', date.getMonth() + 2)
location.href = 'acct.html?mode=first&code=true'
2019-05-19 16:39:30 +09:00
} else {
2020-07-10 22:33:12 +09:00
const obj = JSON.parse(multi)
const keymap = Object.keys(obj)
2020-07-12 00:48:15 +09:00
let req = false
2020-07-10 22:33:12 +09:00
for (let i = 0; i < keymap.length; i++) {
const key = keymap[i]
const acct = obj[key]
2019-05-19 16:39:30 +09:00
if (acct.domain) {
2020-07-12 00:48:15 +09:00
req = refresh(key, true)
2019-05-19 16:39:30 +09:00
}
2020-07-10 22:33:12 +09:00
}
2020-07-12 00:48:15 +09:00
if(req) {
Swal.fire({
title: 'Reload required',
text: lang.lang_login_changedData,
type: 'info',
showCancelButton: true,
confirmButtonText: lang.lang_no,
cancelButtonText: lang.lang_yesno
}).then(result => {
if(result) location.reload()
})
}
2019-05-19 16:39:30 +09:00
if (obj[0].domain) {
2020-07-10 22:33:12 +09:00
showElm('#tl')
ticker()
multiSelector(false)
2020-07-10 22:33:12 +09:00
verck(ver)
showElm('.stw')
const tips = localStorage.getItem('tips')
if (tips) {
tips(tips)
2020-04-08 15:27:47 +09:00
}
2020-07-10 22:33:12 +09:00
document.querySelector('#something-wrong img').setAttribute('src', '../../img/thinking.svg')
2019-02-05 11:33:32 +09:00
}
2018-01-28 21:22:43 +09:00
}
}
ck()
2020-07-10 22:33:12 +09:00
//ユーザーデータ更新
async function refresh(target, loadskip) {
2020-07-12 00:48:15 +09:00
let obj = acctList
let requireReload = false
const { mode, domain, at, background, text, name, prof, vis } = obj[target]
2020-07-10 22:33:12 +09:00
if (mode == 'misskey') {
return
2018-02-26 00:32:10 +09:00
}
2020-07-10 22:33:12 +09:00
const start = `https://${domain}/api/v1/accounts/verify_credentials`
const json = await getApi(start, at)
if (json.error) {
console.error('Error:' + json.error)
M.toast({ html: lang.lang_fatalerroroccured + 'Error:' + json.error, displayLength: 5000 })
return
}
2020-07-10 22:33:12 +09:00
let avatar = json['avatar']
//missingがmissingなやつ
if (avatar == '/avatars/original/missing.png' || !avatar) {
avatar = './img/missing.svg'
}
2020-07-12 00:48:15 +09:00
const { newName, newProf, newVis } = json
if (newName != name || newProf != prof || newVis != vis) {
let ref = {
at: at,
name: json['display_name'],
domain: domain,
user: json['acct'],
prof: avatar,
id: json['id'],
vis: json['source']['privacy']
}
if (background) {
ref.background = background
}
if (text) {
ref.text = text
}
if (json['source']['sensitive']) {
localStorage.setItem('nsfw_' + target, true)
} else {
localStorage.removeItem('nsfw_' + target)
}
obj[target] = ref
const save = JSON.stringify(obj)
localStorage.setItem('multi', save)
requireReload = true
2018-02-18 14:43:11 +09:00
}
2020-07-10 22:33:12 +09:00
if (!loadskip) {
load()
2020-07-12 00:48:15 +09:00
} else {
return requireReload
2018-08-17 02:21:40 +09:00
}
}
2018-03-27 11:39:35 +09:00
//MarkdownやBBCodeの対応、文字数制限をチェック
2018-08-17 02:21:40 +09:00
//絶対ストリーミングを閉じさせないマン
2018-02-09 01:43:11 +09:00
function ckdb(acct_id) {
2020-07-10 22:33:12 +09:00
const domain = localStorage.getItem(`domain_${acct_id}`)
if (domain == 'kirishima.cloud') {
2020-07-12 00:48:15 +09:00
localStorage.setItem('kirishima', true)
} else if (domain == 'imastodon.net') {
2020-07-12 00:48:15 +09:00
localStorage.setItem('imas', true)
2020-07-10 22:33:12 +09:00
showElm('.imasonly')
2018-02-09 01:43:11 +09:00
}
2020-07-10 22:33:12 +09:00
const at = localStorage.getItem(`acct_${acct_id}_at`)
const letters = `${domain}_letters`
const quoteMarker = `${domain}_quote`
2020-07-12 00:48:15 +09:00
2020-07-10 14:16:39 +09:00
if (idata) {
2020-07-10 14:21:24 +09:00
//check and replace json to idata
var json = idata
if (json[quoteMarker] == 'enabled') {
2020-07-12 00:48:15 +09:00
localStorage.setItem('quoters', true)
localStorage.setItem(`quote_${acct_id}`, true)
2019-05-19 16:39:30 +09:00
}
2020-07-12 00:48:15 +09:00
}
if (!isMisskey(domain)) {
const start = `https://${domain}/api/v1/instance`
const json = getApi(start, null)
if (!json || json.error) {
return
2019-05-19 16:39:30 +09:00
}
2020-07-12 00:48:15 +09:00
const mtc = json['max_toot_chars']
if (mtc) {
localStorage.setItem(`letters_${acct_id}`, mtc)
2019-05-19 16:39:30 +09:00
}
2020-07-12 00:48:15 +09:00
if (json['feature_quote']) {
localStorage.setItem(`quote_${acct_id}`, true)
2019-05-19 16:39:30 +09:00
}
2020-07-12 00:48:15 +09:00
const str = json['urls']['streaming_api']
if (str) {
localStorage.setItem(`streaming_${acct_id}`, str)
2019-05-19 16:39:30 +09:00
}
2018-02-25 17:41:34 +09:00
}
2018-01-28 21:22:43 +09:00
}
//アカウントを選択…を実装
2019-07-06 23:16:41 +09:00
function multiSelector(parseC) {
2020-07-12 00:48:15 +09:00
if (!acctList) return false
const obj = acctList
let template
//StringなのはlocalStorageがStringしか返さないから
let lastUsed = '0'
if (localStorage.getItem('mainuse') == 'main') {
2020-07-12 00:48:15 +09:00
lastUsed = localStorage.getItem('main')
} else if (localStorage.getItem('last-use')) {
2020-07-12 00:48:15 +09:00
lastUsed = localStorage.getItem('last-use')
if (lastUsed == 'webview' || last == 'noauth') {
lastUsed = '0'
2019-05-20 22:34:58 +09:00
}
2019-05-19 16:39:30 +09:00
} else {
2020-07-12 00:48:15 +09:00
lastUsed = '0'
2018-05-20 15:17:10 +09:00
}
2020-07-12 00:48:15 +09:00
let sel
2019-05-19 16:39:30 +09:00
if (obj.length < 1) {
2020-07-12 00:48:15 +09:00
document.querySelector('#src-acct-sel').innerHTML = '<option value="tootsearch">Tootsearch</option>'
document.querySelector('#add-acct-sel').innerHTML = `<option value="noauth">${lang.lang_login_noauth}</option>`
2019-05-19 16:39:30 +09:00
} else {
2020-07-12 00:48:15 +09:00
for (let i = 0; i < obj.length; i++) {
const acct = obj[i]
const strKey = i?.toString()
if (key == lastUsed) {
sel = 'selected'
2020-07-12 00:48:15 +09:00
const domain = acct.domain
const letters = idata[`${domain}_letters`]
const textarea = document.querySelector('#textarea')
if (letters) {
textarea.setAttribute('data-length', letters)
2019-05-19 16:39:30 +09:00
} else {
2020-07-12 00:48:15 +09:00
//手動でアカマネで変えれちゃうから
const maxLetters = localStorage.getItem('letters_' + key)
if (maxLetters > 0) {
textarea.setAttribute('data-length', maxLetters)
2019-05-19 16:39:30 +09:00
} else {
2020-07-12 00:48:15 +09:00
textarea.setAttribute('data-length', 500)
2019-05-19 16:39:30 +09:00
}
}
2020-07-12 00:48:15 +09:00
if (idata[`${domain}_glitch`]) {
document.querySelector('#local-button').classList.remove('hide')
2019-05-19 16:39:30 +09:00
}
2020-07-12 00:48:15 +09:00
let profimg = acct.prof
2019-05-19 16:39:30 +09:00
if (!profimg) {
profimg = '../../img/missing.svg'
2019-05-19 16:39:30 +09:00
}
2020-07-12 00:48:15 +09:00
document.querySelector('#acct-sel-pro').setAttribute('src', profimg)
let cc = ''
2019-05-19 16:39:30 +09:00
if (domain) {
2020-07-12 00:48:15 +09:00
cc = `(${domain})`
2019-05-19 16:39:30 +09:00
}
2020-07-12 00:48:15 +09:00
const tpb = document.querySelector('#toot-post-btn')
tpb.innerText = lang.lang_toot + cc
if (acct.background && acct.background != 'def' && acct.text && acct.text != 'def') {
2020-07-12 00:48:15 +09:00
tpb.classList.remove('indigo')
tpb.style.backgroundColor = `#${acct.background}`
tpb.style.color = `#${acct.text}`
2019-05-19 16:39:30 +09:00
}
if (domain == 'imastodon.net') {
trendTag()
2019-05-19 16:39:30 +09:00
} else {
2020-07-12 00:48:15 +09:00
document.querySelector('#trendtag').innerHTML = ''
2019-05-19 16:39:30 +09:00
}
} else {
sel = ''
2018-04-16 22:58:14 +09:00
}
2020-07-12 00:48:15 +09:00
template = `
<option value="${key}" data-icon="${acct.prof}" class="left circle" ${sel}>
@${acct.user} ${acct.domain}
</option>
`
appendPrepend('.acct-sel', template, 'append')
}
$('#src-acct-sel').append('<option value="tootsearch">Tootsearch</option>')
$('#add-acct-sel').append(
'<option value="noauth">' +
2020-07-10 22:33:12 +09:00
lang.lang_login_noauth +
'</option><option value="webview">Twitter</option>'
)
$('#dir-acct-sel').append('<option value="noauth">' + lang.lang_login_noauth + '</option>')
2018-03-27 11:39:35 +09:00
}
$('select').formSelect()
2019-11-04 01:10:06 +09:00
if (!parseC) {
parseColumn(null, true)
2019-07-06 23:16:41 +09:00
}
2018-01-28 21:22:43 +09:00
}
2018-12-09 03:46:01 +09:00
//インスタンスティッカー
function ticker() {
2020-07-12 00:48:15 +09:00
const start = 'https://toot-app.thedesk.top/toot/index.php'
const json = getApi(start, null)
if(json) localStorage.setItem('ticker', JSON.stringify(json))
2019-11-04 01:10:06 +09:00
}
2020-07-12 00:48:15 +09:00
function isMisskey(domain) {
return localStorage.getItem(`mode_${domain}`) == 'misskey'
}