Add: get verify_credentials and error message

This commit is contained in:
Cutls 2019-04-25 21:13:12 +09:00
parent 8f3edf76e6
commit 41bc02c959

View File

@ -1,5 +1,6 @@
import { ipcMain, Event, shell } from "electron" import { ipcMain, Event, shell } from "electron"
import Mastodon from "megalodon" import Mastodon, { Status, Response } from "megalodon"
import Window from "./Window"
export default class Auth { export default class Auth {
public static ready() { public static ready() {
@ -14,32 +15,76 @@ export default class Auth {
scopes: SCOPES scopes: SCOPES
}, },
"https://" + instance "https://" + instance
).then(appData => { )
clientId = appData.clientId .then(appData => {
clientSecret = appData.clientSecret clientId = appData.clientId
url = appData.url clientSecret = appData.clientSecret
if (url) { url = appData.url
shell.openExternal( if (url) {
url, shell.openExternal(
{ url,
activate: false {
}, activate: false
err => { },
if (err) console.log(err) err => {
} if (err) console.log(err)
) }
} else { )
console.log(appData) } else {
} Window.windowMap
}) .get("main")!
.catch((err: Error) => console.error(err)) .webContents.send(`error`, {
}) id: "ERROR_GET_AUTHURL",
ipcMain.on("new-account-auth", async (event: Event, code: string, instance: string) => { message: "Failed to get auth URL to login."
Mastodon.fetchAccessToken(clientId, clientSecret, code, "https://" + instance) })
.then((tokenData: Partial<{ accessToken: string }>) => { }
console.log(tokenData.accessToken)
}) })
.catch((err: Error) => console.error(err)) .catch((err: Error) =>
Window.windowMap
.get("main")!
.webContents.send(`error`, {
id: "ERROR_CONNECTION",
message: "Connection error",
meta: err
})
)
}) })
ipcMain.on(
"new-account-auth",
async (event: Event, code: string, instance: string) => {
let url: string = "https://" + instance
Mastodon.fetchAccessToken(clientId, clientSecret, code, url)
.then((tokenData: Partial<{ accessToken: string }>) => {
if (tokenData.accessToken) {
const client = new Mastodon(
tokenData.accessToken,
url + "/api/v1"
)
client
.get<[Status]>("/accounts/verify_credentials")
.then((resp: Response<[Status]>) => {
console.log(resp.data)
})
} else {
Window.windowMap
.get("main")!
.webContents.send(`error`, {
id: "ERROR_GET_TOKEN",
message: "Failed to get access token."
})
}
})
.catch((err: Error) =>
Window.windowMap
.get("main")!
.webContents.send(`error`, {
id: "ERROR_CONNECTION",
message: "Connection error",
meta: err
})
)
}
)
} }
} }