Revert "[mastodon-client] send proper user preferences"
This reverts commit 3fe156f79578d8506cfbb70f3f6f806f50a818b9.
This commit is contained in:
parent
4f969f63c1
commit
dfd9bd5dd1
|
@ -1079,11 +1079,23 @@ export default class Misskey implements MegalodonInterface {
|
||||||
// accounts/preferences
|
// accounts/preferences
|
||||||
// ======================================
|
// ======================================
|
||||||
public async getPreferences(): Promise<Response<Entity.Preferences>> {
|
public async getPreferences(): Promise<Response<Entity.Preferences>> {
|
||||||
return this.client.post<MisskeyAPI.Entity.UserDetailMe>('/api/i').then(async res => {
|
return this.client.post<MisskeyAPI.Entity.UserDetailMe>('/api/i').then(res => {
|
||||||
return Object.assign(res, {
|
/*
|
||||||
data: this.converter.userPreferences(res.data, await this.getDefaultPostPrivacy())
|
return this.client.post<MisskeyAPI.Entity.GetAll>('/api/i/registry/get-all', {
|
||||||
})
|
scope: ['client', 'base'],
|
||||||
})
|
}).then(ga => {
|
||||||
|
return Object.assign(res, {
|
||||||
|
data: this.converter.userPreferences(res.data, ga.data)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
*/
|
||||||
|
|
||||||
|
// TODO:
|
||||||
|
// FIXME: get this from api
|
||||||
|
return Object.assign(res, {
|
||||||
|
data: this.converter.userPreferences(res.data, {defaultNoteVisibility: "followers", tutorial: -1})
|
||||||
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// ======================================
|
// ======================================
|
||||||
|
@ -1527,7 +1539,7 @@ export default class Misskey implements MegalodonInterface {
|
||||||
.then(res => res.data[0] ?? '⭐');
|
.then(res => res.data[0] ?? '⭐');
|
||||||
}
|
}
|
||||||
|
|
||||||
private async getDefaultPostPrivacy(): Promise<'public' | 'unlisted' | 'private' | 'direct'> {
|
private async getDefaultPostPrivacy(): Promise<string> {
|
||||||
// NOTE: get-unsecure is calckey's extension.
|
// NOTE: get-unsecure is calckey's extension.
|
||||||
// Misskey doesn't have this endpoint and regular `/i/registry/get` won't work
|
// Misskey doesn't have this endpoint and regular `/i/registry/get` won't work
|
||||||
// unless you have a 'nativeToken', which is reserved for the frontend webapp.
|
// unless you have a 'nativeToken', which is reserved for the frontend webapp.
|
||||||
|
|
|
@ -175,13 +175,13 @@ namespace MisskeyAPI {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
userPreferences = (u: MisskeyAPI.Entity.UserDetailMe, v: 'public' | 'unlisted' | 'private' | 'direct'): MegalodonEntity.Preferences => {
|
userPreferences = (u: MisskeyAPI.Entity.UserDetailMe, g: MisskeyAPI.Entity.GetAll): MegalodonEntity.Preferences => {
|
||||||
return {
|
return {
|
||||||
"reading:expand:media": "default",
|
"reading:expand:media": "default",
|
||||||
"reading:expand:spoilers": false,
|
"reading:expand:spoilers": false,
|
||||||
"posting:default:language": u.lang,
|
"posting:default:language": u.lang,
|
||||||
"posting:default:sensitive": u.alwaysMarkNsfw,
|
"posting:default:sensitive": u.alwaysMarkNsfw,
|
||||||
"posting:default:visibility": v
|
"posting:default:visibility": this.visibility(g.defaultNoteVisibility)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue