Your IP : 216.73.217.11


Current Path : /home/azimutno/azimutno/www/plugins/nextendslidergenerator/youtube/bysearch/
Upload File :
Current File : /home/azimutno/azimutno/www/plugins/nextendslidergenerator/youtube/bysearch/generator.php

<?php
/*
# author Roland Soos
# copyright Copyright (C) Nextendweb.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-3.0.txt GNU/GPL
*/
defined('_JEXEC') or die('Restricted access'); ?><?php

nextendimportsmartslider2('nextend.smartslider.generator_abstract');

class NextendGeneratorYoutube_BySearch extends NextendGeneratorAbstract {

    function NextendGeneratorYoutube_BySearch($data) {
        parent::__construct($data);
        $this->_variables = array(
            'video_id' => NextendText::_('Use_this_with_Youtube_item_YouTube_video_code'),
            'video_url' => NextendText::_('Url_to_the_video'),
            'title' => NextendText::_('Video_title'),
            'description' => NextendText::_('Video_description'),
            'channel_title' => NextendText::_('Channel_title'),
            'channel_url' => NextendText::_('Url_to_the_channel'),
            'thumbnail_default' => NextendText::_('Default_thumbnail_image'),
            'thumbnail_medium' => NextendText::_('Medium_thumbnail_image'),
            'thumbnail_high' => NextendText::_('High_thumbnail_image')
        );
    }

    function getData($number) {

        $data = array();

        $a = getNextendYoutube();
        if (!$a) return $data;
        
        $client = $a[0];
        $youtube = $a[1];

        try {

            $searchResponse = $youtube->search->listSearch('id,snippet', array(
                'q' => $this->_data->get('youtubesearch', ''),
                'maxResults' => $number,
                'type' => 'video',
                'videoEmbeddable' => 'true'
            ));
            $i = 0;
            foreach ($searchResponse['items'] AS $k => $item) {
                $data[$i] = array();

                $data[$i]['video_id'] = $item['id']['videoId'];
                $data[$i]['video_url'] = 'http://www.youtube.com/watch?v=' . $item['id']['videoId'];
                $data[$i]['title'] = $item['snippet']['title'];
                $data[$i]['description'] = $item['snippet']['description'];
                $data[$i]['thumbnail_default'] = $item['snippet']['thumbnails']['default']['url'];
                $data[$i]['thumbnail_medium'] = $item['snippet']['thumbnails']['medium']['url'];
                $data[$i]['thumbnail_high'] = $item['snippet']['thumbnails']['high']['url'];
                $data[$i]['channel_title'] = $item['snippet']['channelTitle'];
                $data[$i]['channel_url'] = 'http://www.youtube.com/user/' . $item['snippet']['channelTitle'];
                $i++;
            }

        } catch (Google_ServiceException $e) {
            echo sprintf('<p>A service error occurred: <code>%s</code></p>',
                htmlspecialchars($e->getMessage()));
        }

        catch
        (Google_Exception $e) {
            echo sprintf('<p>An client error occurred: <code>%s</code></p>',
                htmlspecialchars($e->getMessage()));
        }
        return $data;
    }
}