From 4f75591060d95208a301bc6bf460d875631b29cc Mon Sep 17 00:00:00 2001 From: Dag Date: Fri, 1 Jul 2022 15:10:30 +0200 Subject: Reformat codebase v4 (#2872) Reformat code base to PSR12 Co-authored-by: rssbridge --- bridges/NovayaGazetaEuropeBridge.php | 264 ++++++++++++++++++----------------- 1 file changed, 134 insertions(+), 130 deletions(-) (limited to 'bridges/NovayaGazetaEuropeBridge.php') diff --git a/bridges/NovayaGazetaEuropeBridge.php b/bridges/NovayaGazetaEuropeBridge.php index c7511a31..fb8c0e77 100644 --- a/bridges/NovayaGazetaEuropeBridge.php +++ b/bridges/NovayaGazetaEuropeBridge.php @@ -1,141 +1,145 @@ array( - 'language' => array( - 'name' => 'Language', - 'type' => 'list', - 'defaultValue' => 'ru', - 'values' => array( - 'Russian' => 'ru', - 'English' => 'en', - ) - ), - 'limit' => array( - 'name' => 'Limit', - 'type' => 'number', - 'required' => false, - 'title' => 'Maximum number of items to return', - 'defaultValue' => 20 - ) - ) - ); + const PARAMETERS = [ + '' => [ + 'language' => [ + 'name' => 'Language', + 'type' => 'list', + 'defaultValue' => 'ru', + 'values' => [ + 'Russian' => 'ru', + 'English' => 'en', + ] + ], + 'limit' => [ + 'name' => 'Limit', + 'type' => 'number', + 'required' => false, + 'title' => 'Maximum number of items to return', + 'defaultValue' => 20 + ] + ] + ]; - public function collectData() - { - $url = 'https://novayagazeta.eu/api/v1/get/main'; - if ($this->getInput('language') != 'ru') { - $url .= '?lang=' . $this->getInput('language'); - } + public function collectData() + { + $url = 'https://novayagazeta.eu/api/v1/get/main'; + if ($this->getInput('language') != 'ru') { + $url .= '?lang=' . $this->getInput('language'); + } - $json = getContents($url); - $data = json_decode($json); + $json = getContents($url); + $data = json_decode($json); - foreach ($data->records as $record) { - foreach ($record->blocks as $block) { - if (!property_exists($block, 'date')) { - continue; - } - $title = strip_tags($block->title); - if (!empty($block->subtitle)) { - $title .= '. ' . strip_tags($block->subtitle); - } - $item = array( - 'uri' => self::URI . '/articles/' . $block->slug, - 'block' => $block, - 'title' => $title, - 'author' => join(', ', array_map(function ($author) { - return $author->name; - }, $block->authors)), - 'timestamp' => $block->date / 1000, - 'categories' => $block->tags - ); - $this->items[] = $item; - } - } - usort($this->items, function ($item1, $item2) { - return $item2['timestamp'] <=> $item1['timestamp']; - }); - if ($this->getInput('limit') !== null) { - $this->items = array_slice($this->items, 0, $this->getInput('limit')); - } - foreach ($this->items as &$item) { - $block = $item['block']; - $body = ''; - if (property_exists($block, 'body') && $block->body !== null) { - $body = self::convertBody($block); - } else { - $record_json = getContents("https://novayagazeta.eu/api/v1/get/record?slug={$block->slug}"); - $record_data = json_decode($record_json); - $body = self::convertBody($record_data->record); - } - $item['content'] = $body; - unset($item['block']); - } - } + foreach ($data->records as $record) { + foreach ($record->blocks as $block) { + if (!property_exists($block, 'date')) { + continue; + } + $title = strip_tags($block->title); + if (!empty($block->subtitle)) { + $title .= '. ' . strip_tags($block->subtitle); + } + $item = [ + 'uri' => self::URI . '/articles/' . $block->slug, + 'block' => $block, + 'title' => $title, + 'author' => join(', ', array_map(function ($author) { + return $author->name; + }, $block->authors)), + 'timestamp' => $block->date / 1000, + 'categories' => $block->tags + ]; + $this->items[] = $item; + } + } + usort($this->items, function ($item1, $item2) { + return $item2['timestamp'] <=> $item1['timestamp']; + }); + if ($this->getInput('limit') !== null) { + $this->items = array_slice($this->items, 0, $this->getInput('limit')); + } + foreach ($this->items as &$item) { + $block = $item['block']; + $body = ''; + if (property_exists($block, 'body') && $block->body !== null) { + $body = self::convertBody($block); + } else { + $record_json = getContents("https://novayagazeta.eu/api/v1/get/record?slug={$block->slug}"); + $record_data = json_decode($record_json); + $body = self::convertBody($record_data->record); + } + $item['content'] = $body; + unset($item['block']); + } + } - private function convertBody($data) { - $body = ''; - if ($data->previewUrl !== null && !$data->isPreviewHidden) { - $body .= '
'; - if ($data->previewCaption !== null) { - $body .= '
' . $data->previewCaption . '
'; - } - $body .= '
'; - } - if ($data->lead !== null) { - $body .= "

{$data->lead}

"; - } - if (!empty($data->body)) { - foreach ($data->body as $datum) { - $body .= self::convertElement($datum); - } - } - return $body; - } + private function convertBody($data) + { + $body = ''; + if ($data->previewUrl !== null && !$data->isPreviewHidden) { + $body .= '
'; + if ($data->previewCaption !== null) { + $body .= '
' . $data->previewCaption . '
'; + } + $body .= '
'; + } + if ($data->lead !== null) { + $body .= "

{$data->lead}

"; + } + if (!empty($data->body)) { + foreach ($data->body as $datum) { + $body .= self::convertElement($datum); + } + } + return $body; + } - private function convertElement($datum) { - switch ($datum->type) { - case 'text': - return $datum->data; - case 'image/single': - $alt = strip_tags($datum->data); - $res = "
previewUrl}\" alt=\"{$alt}\" />"; - if ($datum->data !== null) { - $res .= "
{$datum->data}
"; - } - $res .= '
'; - return $res; - case 'text/quote': - return "
{$datum->data}

"; - case 'embed/native': - $desc = $datum->link; - if (property_exists($datum, 'caption')) { - $desc = $datum->caption; - } - return "

link}\">{$desc}

"; - case 'text/framed': - $res = ''; - if (property_exists($datum, 'typeDisplay')) { - $res .= "

{$datum->typeDisplay}

"; - } - $res .= "

{$datum->data}

"; - if (property_exists($datum, 'attachment') - && property_exists($datum->attachment, 'type')) { - $res .= self::convertElement($datum->attachment); - } - return $res; - default: - return ''; - } - } + private function convertElement($datum) + { + switch ($datum->type) { + case 'text': + return $datum->data; + case 'image/single': + $alt = strip_tags($datum->data); + $res = "
previewUrl}\" alt=\"{$alt}\" />"; + if ($datum->data !== null) { + $res .= "
{$datum->data}
"; + } + $res .= '
'; + return $res; + case 'text/quote': + return "
{$datum->data}

"; + case 'embed/native': + $desc = $datum->link; + if (property_exists($datum, 'caption')) { + $desc = $datum->caption; + } + return "

link}\">{$desc}

"; + case 'text/framed': + $res = ''; + if (property_exists($datum, 'typeDisplay')) { + $res .= "

{$datum->typeDisplay}

"; + } + $res .= "

{$datum->data}

"; + if ( + property_exists($datum, 'attachment') + && property_exists($datum->attachment, 'type') + ) { + $res .= self::convertElement($datum->attachment); + } + return $res; + default: + return ''; + } + } } -- cgit v1.2.3