1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
<?php
class PillowfortBridge extends BridgeAbstract
{
const NAME = 'Pillowfort';
const URI = 'https://www.pillowfort.social';
const DESCRIPTION = 'Returns recent posts from a user';
const MAINTAINER = 'KamaleiZestri';
const PARAMETERS = [[
'username' => [
'name' => 'Username',
'type' => 'text',
'required' => true,
'exampleValue' => 'Staff'
],
'noava' => [
'name' => 'Hide avatar',
'type' => 'checkbox',
'title' => 'Check to hide user avatars.'
],
'noreblog' => [
'name' => 'Hide reblogs',
'type' => 'checkbox',
'title' => 'Check to only show original posts.'
],
'noretags' => [
'name' => 'Prefer original tags',
'type' => 'checkbox',
'title' => 'Check to use tags from original post(if available) instead of reblog\'s tags'
],
'image' => [
'name' => 'Select image type',
'type' => 'list',
'title' => 'Decides how the image is displayed, if at all.',
'values' => [
'None' => 'None',
'Small' => 'Small',
'Full' => 'Full'
],
'defaultValue' => 'Full'
]
]];
/**
* The Pillowfort bridge.
*
* Pillowfort pages are dynamically generated from a json file
* which holds the last 20 or so posts from the given user.
* This bridge uses that json file and HTML/CSS similar
* to the Twitter bridge for formatting.
*/
public function collectData()
{
$jsonSite = getContents($this->getJSONURI());
$jsonFile = json_decode($jsonSite, true);
$posts = $jsonFile['posts'];
foreach ($posts as $post) {
$item = $this->getItemFromPost($post);
//empty when 'noreblogs' is checked and current post is a reblog.
if (!empty($item)) {
$this->items[] = $item;
}
}
}
public function getName()
{
$name = $this -> getUsername();
if ($name != '') {
return $name . ' - ' . self::NAME;
} else {
return parent::getName();
}
}
public function getURI()
{
$name = $this -> getUsername();
if ($name != '') {
return self::URI . '/' . $name;
} else {
return parent::getURI();
}
}
protected function getJSONURI()
{
return $this -> getURI() . '/json/?p=1';
}
protected function getUsername()
{
return $this -> getInput('username');
}
protected function genAvatarText($author, $avatar_url, $title)
{
$noava = $this -> getInput('noava');
if ($noava) {
return '';
} else {
return <<<EOD
<a href="{self::URI}/posts/{$author}">
<img
style="align:top; width:75px; border:1px solid black;"
alt="{$author}"
src="{$avatar_url}"
title="{$title}" />
</a>
EOD;
}
}
protected function genImagesText($media)
{
$dimensions = $this -> getInput('image');
$text = '';
//preg_replace used for images with spaces in the url
switch ($dimensions) {
case 'None':
foreach ($media as $image) {
$imageURL = preg_replace('[ ]', '%20', $image['url']);
$text .= <<<EOD
<a href="{$imageURL}">
{$imageURL}
</a>
EOD;
}
break;
case 'Small':
foreach ($media as $image) {
$imageURL = preg_replace('[ ]', '%20', $image['small_image_url']);
$text .= <<<EOD
<a href="{$imageURL}">
<img
style="align:top; max-width:558px; border:1px solid black;"
src="{$imageURL}"
/>
</a>
EOD;
}
break;
case 'Full':
foreach ($media as $image) {
$imageURL = preg_replace('[ ]', '%20', $image['url']);
$text .= <<<EOD
<a href="{$imageURL}">
<img
style="align:top; max-width:558px; border:1px solid black;"
src="{$imageURL}"
/>
</a>
EOD;
}
break;
default:
break;
}
return $text;
}
protected function getItemFromPost($post)
{
//check if its a reblog.
if ($post['original_post_id'] == null) {
$embPost = false;
} else {
$embPost = true;
}
if ($this -> getInput('noreblog') && $embPost) {
return [];
}
$item = [];
$item['uid'] = $post['id'];
$item['timestamp'] = strtotime($post['created_at']);
if ($embPost) {
$item['uri'] = self::URI . '/posts/' . $post['original_post']['id'];
$item['author'] = $post['original_username'];
if ($post['original_post']['title'] != '') {
$item['title'] = $post['original_post']['title'];
} else {
$item['title'] = '[NO TITLE]';
}
} else {
$item['uri'] = self::URI . '/posts/' . $post['id'];
$item['author'] = $post['username'];
if ($post['title'] != '') {
$item['title'] = $post['title'];
} else {
$item['title'] = '[NO TITLE]';
}
}
/**
* 4 cases if it is a reblog.
* 1: reblog has tags, original has tags. defer to option.
* 2: reblog has tags, original has no tags. use reblog tags.
* 3: reblog has no tags, original has tags. use original tags.
* 4: reblog has no tags, original has no tags. use reblog tags not that it matters.
*/
$item['categories'] = $post['tags'];
if ($embPost) {
if ($this -> getInput('noretags') || ($post['tags'] == null )) {
$item['categories'] = $post['original_post']['tag_list'];
}
}
$avatarText = $this -> genAvatarText(
$item['author'],
$post['avatar_url'],
$item['title']
);
$imagesText = $this -> genImagesText($post['media']);
$item['content'] = <<<EOD
<div style="display: inline-block; vertical-align: top;">
{$avatarText}
</div>
<div style="display: inline-block; vertical-align: top;">
{$post['content']}
</div>
<div style="display: block; vertical-align: top;">
{$imagesText}
</div>
EOD;
return $item;
}
}
|