parent
037837b551
commit
0e4a111f81
1714 changed files with 20803 additions and 11751 deletions
23
packages/backend/src/remote/activitypub/renderer/question.ts
Normal file
23
packages/backend/src/remote/activitypub/renderer/question.ts
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import config from '@/config/index';
|
||||
import { User } from '@/models/entities/user';
|
||||
import { Note } from '@/models/entities/note';
|
||||
import { Poll } from '@/models/entities/poll';
|
||||
|
||||
export default async function renderQuestion(user: { id: User['id'] }, note: Note, poll: Poll) {
|
||||
const question = {
|
||||
type: 'Question',
|
||||
id: `${config.url}/questions/${note.id}`,
|
||||
actor: `${config.url}/users/${user.id}`,
|
||||
content: note.text || '',
|
||||
[poll.multiple ? 'anyOf' : 'oneOf']: poll.choices.map((text, i) => ({
|
||||
name: text,
|
||||
_misskey_votes: poll.votes[i],
|
||||
replies: {
|
||||
type: 'Collection',
|
||||
totalItems: poll.votes[i]
|
||||
}
|
||||
}))
|
||||
};
|
||||
|
||||
return question;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue