Feat: new internal post visibility "hidden"

This commit is contained in:
April John 2023-05-05 15:16:10 +02:00
parent 5fd6690755
commit 3800eb8980
11 changed files with 27 additions and 5 deletions

View file

@ -0,0 +1,13 @@
export class AddHiddenPosts1682891891317 {
name = "AddHiddenPosts1682891891317";
async up(queryRunner) {
await queryRunner.query(
`ALTER TYPE note_visibility_enum ADD VALUE IF NOT EXISTS 'hidden'`,
);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TYPE note_visibility_enum REMOVE VALUE IF EXISTS 'hidden'`);
}
}

View file

@ -111,6 +111,7 @@ export class Note {
/**
* public ...
* home ... ()
* hidden ... only visible on profile (doesnt federate, like local only, but can be fetched via AP like home) <- for now only used for post imports
* followers ...
* specified ... visibleUserIds
*/

View file

@ -65,7 +65,7 @@ export async function importPosts(
renote: null,
cw: cw,
localOnly,
visibility: "public",
visibility: "hidden",
visibleUsers: [],
channel: null,
apMentions: new Array(0),
@ -109,7 +109,7 @@ export async function importPosts(
renote: null,
cw: post.sensitive,
localOnly: false,
visibility: "public",
visibility: "hidden",
visibleUsers: [],
channel: null,
apMentions: new Array(0),

View file

@ -686,7 +686,7 @@ export async function updateNote(value: string | IObject, resolver?: Resolver) {
multiple: poll?.multiple,
votes: poll?.votes,
expiresAt: poll?.expiresAt,
noteVisibility: note.visibility,
noteVisibility: note.visibility === "hidden" ? "home" : note.visibility,
userId: actor.id,
userHost: actor.host,
});
@ -704,7 +704,7 @@ export async function updateNote(value: string | IObject, resolver?: Resolver) {
multiple: poll?.multiple,
votes: poll?.votes,
expiresAt: poll?.expiresAt,
noteVisibility: note.visibility,
noteVisibility: note.visibility === "hidden" ? "home" : note.visibility,
},
);
updating = true;

View file

@ -98,6 +98,7 @@ export default define(meta, paramDef, async (ps, user) => {
if (ps.withFiles) {
query.andWhere("note.fileIds != '{}'");
}
query.andWhere("note.visibility != 'hidden'");
//#endregion
process.nextTick(() => {

View file

@ -156,6 +156,8 @@ export default define(meta, paramDef, async (ps, user) => {
if (ps.withFiles) {
query.andWhere("note.fileIds != '{}'");
}
query.andWhere("note.visibility != 'hidden'");
//#endregion
process.nextTick(() => {

View file

@ -128,6 +128,7 @@ export default define(meta, paramDef, async (ps, user) => {
);
}
}
query.andWhere("note.visibility != 'hidden'");
//#endregion
process.nextTick(() => {

View file

@ -131,6 +131,7 @@ export default define(meta, paramDef, async (ps, user) => {
);
}
}
query.andWhere("note.visibility != 'hidden'");
//#endregion
process.nextTick(() => {

View file

@ -152,6 +152,8 @@ export default define(meta, paramDef, async (ps, user) => {
if (ps.withFiles) {
query.andWhere("note.fileIds != '{}'");
}
query.andWhere("note.visibility != 'hidden'");
//#endregion
process.nextTick(() => {

View file

@ -144,7 +144,7 @@ export default async (
});
//#region deliver
if (Users.isLocalUser(user) && !note.localOnly) {
if (Users.isLocalUser(user) && !note.localOnly && note.visibility !== "hidden") {
const content = renderActivity(await renderLike(record, note));
const dm = new DeliverManager(user, content);
if (note.userHost !== null) {

View file

@ -18,6 +18,7 @@ export const noteVisibilities = [
"home",
"followers",
"specified",
"hidden",
] as const;
export const mutedNoteReasons = ["word", "manual", "spam", "other"] as const;