mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[ExecuteProgramBridge] Add new bridge for www.executeprogram.com (#2339)
This commit is contained in:
parent
05c31f49ce
commit
b646afffff
38
bridges/ExecuteProgramBridge.php
Executable file
38
bridges/ExecuteProgramBridge.php
Executable file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
class ExecuteProgramBridge extends BridgeAbstract
|
||||
{
|
||||
const NAME = 'Execute Program Blog';
|
||||
const URI = 'https://www.executeprogram.com/blog';
|
||||
const DESCRIPTION = 'Unofficial feed for the www.executeprogram.com blog';
|
||||
const MAINTAINER = 'dvikan';
|
||||
|
||||
public function collectData()
|
||||
{
|
||||
$data = json_decode(getContents('https://www.executeprogram.com/api/pages/blog'));
|
||||
|
||||
foreach ($data->posts as $post) {
|
||||
$year = $post->date->year;
|
||||
$month = $post->date->month;
|
||||
$day = $post->date->day;
|
||||
|
||||
$item = array();
|
||||
$item['uri'] = sprintf('https://www.executeprogram.com/blog/%s', $post->slug);
|
||||
$item['title'] = $post->title;
|
||||
$dateTime = \DateTime::createFromFormat('Y-m-d', $year . '-' . $month . '-' . $day);
|
||||
$item['timestamp'] = $dateTime->format('U');
|
||||
$item['content'] = $post->body;
|
||||
|
||||
$this->items[] = $item;
|
||||
}
|
||||
|
||||
usort($this->items, function ($a, $b) {
|
||||
return $a['timestamp'] < $b['timestamp'];
|
||||
});
|
||||
}
|
||||
|
||||
public function getIcon()
|
||||
{
|
||||
return 'https://www.executeprogram.com/favicon.ico';
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user