2024-09-11 03:16:58 +00:00
|
|
|
'use strict';
|
2024-09-11 03:16:53 +00:00
|
|
|
|
2024-09-11 03:16:58 +00:00
|
|
|
function self(host, post) {
|
|
|
|
console.log(post);
|
2024-09-11 03:16:53 +00:00
|
|
|
|
2024-09-11 03:16:58 +00:00
|
|
|
return {
|
2024-09-11 03:16:53 +00:00
|
|
|
album: null,
|
|
|
|
items: [{
|
|
|
|
id: post.id,
|
|
|
|
url: post.url,
|
|
|
|
title: post.title,
|
|
|
|
text: post.text,
|
|
|
|
datetime: post.datetime,
|
|
|
|
type: 'text/plain',
|
|
|
|
self: true,
|
2024-09-11 03:16:58 +00:00
|
|
|
original: post,
|
2024-09-11 03:16:53 +00:00
|
|
|
}]
|
2024-09-11 03:16:58 +00:00
|
|
|
};
|
|
|
|
}
|
2024-09-11 03:16:53 +00:00
|
|
|
|
|
|
|
module.exports = self;
|