Skip to content

Commit 375831f

Browse files
gloonylogmanoriginal
authored andcommitted
[NineGagBridge] Add filter option for animated content (RSS-Bridge#1374)
1 parent e518936 commit 375831f

File tree

1 file changed

+34
-6
lines changed

1 file changed

+34
-6
lines changed

bridges/NineGagBridge.php

+34-6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ class NineGagBridge extends BridgeAbstract {
1717
'Fresh' => 'fresh',
1818
),
1919
),
20+
'video' => array(
21+
'name' => 'Filter Video',
22+
'type' => 'list',
23+
'values' => array(
24+
'NotFiltred' => 'none',
25+
'VideoFiltred' => 'without',
26+
'VideoOnly' => 'only',
27+
),
28+
),
2029
'p' => array(
2130
'name' => 'Pages',
2231
'type' => 'number',
@@ -121,13 +130,32 @@ public function collectData() {
121130
}
122131

123132
foreach ($posts as $post) {
124-
$item['uri'] = $post['url'];
125-
$item['title'] = $post['title'];
126-
$item['content'] = self::getContent($post);
127-
$item['categories'] = self::getCategories($post);
128-
$item['timestamp'] = self::getTimestamp($post);
133+
$AvoidElement = false;
134+
switch ($this->getInput('video')) {
135+
case 'without':
136+
if ($post['type'] === 'Animated') {
137+
$AvoidElement = true;
138+
}
139+
break;
140+
case 'only':
141+
echo $post['type'];
142+
if ($post['type'] !== 'Animated') {
143+
$AvoidElement = true;
144+
}
145+
break;
146+
case 'none': default:
147+
break;
148+
}
149+
150+
if (!$AvoidElement) {
151+
$item['uri'] = $post['url'];
152+
$item['title'] = $post['title'];
153+
$item['content'] = self::getContent($post);
154+
$item['categories'] = self::getCategories($post);
155+
$item['timestamp'] = self::getTimestamp($post);
129156

130-
$this->items[] = $item;
157+
$this->items[] = $item;
158+
}
131159
}
132160
}
133161

0 commit comments

Comments
 (0)