Changes for frontend
This commit is contained in:
@@ -63,16 +63,16 @@ QUERY;
|
||||
/**
|
||||
* Specifiek bericht ophalen
|
||||
*/
|
||||
public function item(int $id) {
|
||||
public function item($id) {
|
||||
$newsItem = app('db')->select(self::$BASE_SQL
|
||||
. ' AND `news`.`id` = :id LIMIT 0, 1',
|
||||
['id' => $id]);
|
||||
['id' => (int)$id]);
|
||||
|
||||
if(count($newsItem) != 1) {
|
||||
return abort(404);
|
||||
} else {
|
||||
$pictures = app('db')->select(self::$LOAD_IMAGES, ['newsId' => $id]);
|
||||
return response()->json(new \Model\NewsItem($newsItem[0]));
|
||||
$images = app('db')->select(self::$LOAD_IMAGES, ['newsId' => $id]);
|
||||
return response()->json(new \Model\NewsItem($newsItem[0], $images));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,8 +29,14 @@ class NewsItem extends Model {
|
||||
parent::ConvertToDateTime($this->published);
|
||||
parent::ConvertToDateTime($this->edited);
|
||||
|
||||
$this->source = $data->source ? new \Model\NewsSource($data->source, $data->source_url, $data->showsource) : null;
|
||||
$this->keywords = trim($data->keywords) ? explode(' ', $data->keywords) : null;
|
||||
$this->source = null;
|
||||
if($data->source)
|
||||
{
|
||||
$data->source = is_object($data->source)
|
||||
? new \Model\NewsSource($data->source->title, $data->source->url, $data->source->url)
|
||||
: new \Model\NewsSource($data->source, $data->source_url, $data->showsource);
|
||||
}
|
||||
$this->keywords = !is_array($data->keywords) && trim($data->keywords) ? explode(' ', $data->keywords) : null;
|
||||
$this->podcast = $data->podcast ? $data->podcast : null;
|
||||
|
||||
$images = ($images != null) ? $images
|
||||
|
||||
Reference in New Issue
Block a user