<?php
class Arte7Bridge extends BridgeAbstract {

	const MAINTAINER = 'mitsukarenai';
	const NAME = 'Arte +7';
	const URI = 'https://www.arte.tv/';
	const CACHE_TIMEOUT = 1800; // 30min
	const DESCRIPTION = 'Returns newest videos from ARTE +7';

	const API_TOKEN = 'Nzc1Yjc1ZjJkYjk1NWFhN2I2MWEwMmRlMzAzNjI5NmU3NWU3ODg4ODJjOWMxNTMxYzEzZGRjYjg2ZGE4MmIwOA';

	const PARAMETERS = array(
		'Catégorie (Français)' => array(
			'catfr' => array(
				'type' => 'list',
				'name' => 'Catégorie',
				'values' => array(
					'Toutes les vidéos (français)' => null,
					'Actu & société' => 'ACT',
					'Séries & fiction' => 'SER',
					'Cinéma' => 'CIN',
					'Arts & spectacles classiques' => 'ARS',
					'Culture pop' => 'CPO',
					'Découverte' => 'DEC',
					'Histoire' => 'HIST',
					'Science' => 'SCI',
					'Autre' => 'AUT'
				)
			)
		),
		'Catégorie (Allemand)' => array(
			'catde' => array(
				'type' => 'list',
				'name' => 'Catégorie',
				'values' => array(
					'Alle Videos (deutsch)' => null,
					'Aktuelles & Gesellschaft' => 'ACT',
					'Fernsehfilme & Serien' => 'SER',
					'Kino' => 'CIN',
					'Kunst & Kultur' => 'ARS',
					'Popkultur & Alternativ' => 'CPO',
					'Entdeckung' => 'DEC',
					'Geschichte' => 'HIST',
					'Wissenschaft' => 'SCI',
					'Sonstiges' => 'AUT'
				)
			)
		)
	);

	public function collectData(){
		switch($this->queriedContext) {
		case 'Catégorie (Français)':
			$category = $this->getInput('catfr');
			$lang = 'fr';
			break;
		case 'Catégorie (Allemand)':
			$category = $this->getInput('catde');
			$lang = 'de';
			break;
		}

		$url = 'https://api.arte.tv/api/opa/v3/videos?sort=broadcastBegin&limit=10&language='
			. $lang
			. ($category != null ? '&category.code=' . $category : '');

		$context = array(
			'http' => array(
				'header' => 'Authorization: Bearer '. self::API_TOKEN
			)
		);

		$input = getContents($url, false, stream_context_create($context)) or die('Could not request ARTE.');
		$input_json = json_decode($input, true);

		foreach($input_json['videos'] as $element) {

			$item = array();
			$item['uri'] = $element['url'];
			$item['id'] = $element['id'];

			$item['timestamp'] = strtotime($element['videoRightsBegin']);
			$item['title'] = $element['title'];

			if(!empty($element['subtitle']))
				$item['title'] = $element['title'] . ' | ' . $element['subtitle'];

			$item['duration'] = round((int)$element['durationSeconds'] / 60);
			$item['content'] = $element['teaserText']
			. '<br><br>'
			. $item['duration']
			. 'min<br><a href="'
			. $item['uri']
			. '"><img src="'
			. $element['mainImage']['url']
			. '" /></a>';

			$this->items[] = $item;
		}
	}

}