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' ) ) ), 'Collection (Français)' => array( 'colfr' => array( 'name' => 'Collection id', 'required' => true, 'title' => 'ex. RC-014095 pour https://www.arte.tv/fr/videos/RC-014095/blow-up/' ) ), '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' ) ) ), 'Collection (Allemand)' => array( 'colde' => array( 'name' => 'Collection id', 'required' => true, 'title' => 'ex. RC-014095 pour https://www.arte.tv/de/videos/RC-014095/blow-up/' ) ) ); public function collectData(){ switch($this->queriedContext) { case 'Catégorie (Français)': $category = $this->getInput('catfr'); $lang = 'fr'; break; case 'Collection (Français)': $lang = 'fr'; $collectionId = $this->getInput('colfr'); break; case 'Catégorie (Allemand)': $category = $this->getInput('catde'); $lang = 'de'; break; case 'Collection (Allemand)': $lang = 'de'; $collectionId = $this->getInput('colde'); break; } $url = 'https://api.arte.tv/api/opa/v3/videos?sort=-lastModified&limit=10&language=' . $lang . ($category != null ? '&category.code=' . $category : '') . ($collectionId != null ? '&collections.collectionId=' . $collectionId : ''); $header = array( 'Authorization: Bearer ' . self::API_TOKEN ); $input = getContents($url, $header) or returnServerError('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'] . '

' . $item['duration'] . 'min
'; $this->items[] = $item; } } }