aboutsummaryrefslogtreecommitdiff
path: root/bridges/PinterestBridge.php
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/PinterestBridge.php')
-rw-r--r--bridges/PinterestBridge.php123
1 files changed, 62 insertions, 61 deletions
diff --git a/bridges/PinterestBridge.php b/bridges/PinterestBridge.php
index 1f8f86cd..fc5b1c19 100644
--- a/bridges/PinterestBridge.php
+++ b/bridges/PinterestBridge.php
@@ -1,63 +1,64 @@
<?php
-class PinterestBridge extends FeedExpander {
-
- const MAINTAINER = 'pauder';
- const NAME = 'Pinterest Bridge';
- const URI = 'https://www.pinterest.com';
- const DESCRIPTION = 'Returns the newest images on a board';
-
- const PARAMETERS = array(
- 'By username and board' => array(
- 'u' => array(
- 'name' => 'username',
- 'exampleValue' => 'VIGOIndustries',
- 'required' => true
- ),
- 'b' => array(
- 'name' => 'board',
- 'exampleValue' => 'bathroom-remodels',
- 'required' => true
- )
- )
- );
-
- public function getIcon() {
- return 'https://s.pinimg.com/webapp/style/images/favicon-9f8f9adf.png';
- }
-
- public function collectData() {
- $this->collectExpandableDatas($this->getURI() . '.rss');
- $this->fixLowRes();
- }
-
- private function fixLowRes() {
-
- $newitems = array();
- $pattern = '/https\:\/\/i\.pinimg\.com\/[a-zA-Z0-9]*x\//';
- foreach($this->items as $item) {
-
- $item['content'] = preg_replace($pattern, 'https://i.pinimg.com/originals/', $item['content']);
- $newitems[] = $item;
- }
- $this->items = $newitems;
-
- }
-
- public function getURI() {
-
- if ($this->queriedContext === 'By username and board') {
- return self::URI . '/' . urlencode($this->getInput('u')) . '/' . urlencode($this->getInput('b'));
- }
-
- return parent::getURI();
- }
-
- public function getName() {
-
- if ($this->queriedContext === 'By username and board') {
- return $this->getInput('u') . ' - ' . $this->getInput('b') . ' - ' . self::NAME;
- }
-
- return parent::getName();
- }
+
+class PinterestBridge extends FeedExpander
+{
+ const MAINTAINER = 'pauder';
+ const NAME = 'Pinterest Bridge';
+ const URI = 'https://www.pinterest.com';
+ const DESCRIPTION = 'Returns the newest images on a board';
+
+ const PARAMETERS = [
+ 'By username and board' => [
+ 'u' => [
+ 'name' => 'username',
+ 'exampleValue' => 'VIGOIndustries',
+ 'required' => true
+ ],
+ 'b' => [
+ 'name' => 'board',
+ 'exampleValue' => 'bathroom-remodels',
+ 'required' => true
+ ]
+ ]
+ ];
+
+ public function getIcon()
+ {
+ return 'https://s.pinimg.com/webapp/style/images/favicon-9f8f9adf.png';
+ }
+
+ public function collectData()
+ {
+ $this->collectExpandableDatas($this->getURI() . '.rss');
+ $this->fixLowRes();
+ }
+
+ private function fixLowRes()
+ {
+ $newitems = [];
+ $pattern = '/https\:\/\/i\.pinimg\.com\/[a-zA-Z0-9]*x\//';
+ foreach ($this->items as $item) {
+ $item['content'] = preg_replace($pattern, 'https://i.pinimg.com/originals/', $item['content']);
+ $newitems[] = $item;
+ }
+ $this->items = $newitems;
+ }
+
+ public function getURI()
+ {
+ if ($this->queriedContext === 'By username and board') {
+ return self::URI . '/' . urlencode($this->getInput('u')) . '/' . urlencode($this->getInput('b'));
+ }
+
+ return parent::getURI();
+ }
+
+ public function getName()
+ {
+ if ($this->queriedContext === 'By username and board') {
+ return $this->getInput('u') . ' - ' . $this->getInput('b') . ' - ' . self::NAME;
+ }
+
+ return parent::getName();
+ }
}