-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ExecuteProgramBridge] Add new bridge for www.executeprogram.com (#2339)
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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'; | ||
} | ||
} |