-
Notifications
You must be signed in to change notification settings - Fork 0
/
uploadtest.php
165 lines (143 loc) · 6.44 KB
/
uploadtest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php
// Call set_include_path() as needed to point to your client library.
require_once 'google-api-php-client-0.6.7\google-api-php-client\src\Google_Client.php';
require_once 'google-api-php-client-0.6.7\google-api-php-client\src\contrib\Google_YouTubeService.php';
session_start();
/* You can acquire an OAuth 2 ID/secret pair from the API Access tab on the Google APIs Console
<http://code.google.com/apis/console#access>
For more information about using OAuth2 to access Google APIs, please visit:
<https://developers.google.com/accounts/docs/OAuth2>
Please ensure that you have enabled the YouTube Data API for your project. */
$OAUTH2_CLIENT_ID = '826178611003-rt8cu1i1093nnntbsee56qa7crm10fv2.apps.googleusercontent.com';
$OAUTH2_CLIENT_SECRET = 'nv2NHQYJibhc_22xUz-whW6D';
$client = new Google_Client();
$client->setClientId($OAUTH2_CLIENT_ID);
$client->setClientSecret($OAUTH2_CLIENT_SECRET);
$redirect = filter_var('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'],
FILTER_SANITIZE_URL);
$client->setRedirectUri($redirect);
// YouTube object used to make all API requests.
$youtube = new Google_YoutubeService($client);
if (isset($_GET['code'])) {
if (strval($_SESSION['state']) !== strval($_GET['state'])) {
die('The session state did not match.');
}
$client->authenticate();
$_SESSION['token'] = $client->getAccessToken();
header('Location: ' . $redirect);
}
if (isset($_SESSION['token'])) {
$client->setAccessToken($_SESSION['token']);
}
// Check if access token successfully acquired
if ($client->getAccessToken()) {
try {
// This code will create a new, private playlist in the authorized user's channel and
// add the video to the playlist.
// 1. Create the PlaylistSnippet and add the required data.
// $playlistSnippet = new Google_PlaylistSnippet();
// $playlistSnippet->setTitle('Test Playlist ' . date("Y-m-d H:i:s"));
// $playlistSnippet->setDescription('A private playlist created with the YouTube API v3');
// 2. Create playlist status describing the privacy setting.
// $playlistStatus = new Google_PlaylistStatus();
// $playlistStatus->setPrivacyStatus('private');
// 3. Create a playlist insert request with snippet and status.
// $youTubePlaylist = new Google_Playlist();
// $youTubePlaylist->setSnippet($playlistSnippet);
// $youTubePlaylist->setStatus($playlistStatus);
// 4. Execute the request and return an object containing information about the new playlist
// $playlistResponse = $youtube->playlists->insert('snippet,status',
// $youTubePlaylist, array());
// 5. Add the video to the playlist
// a. Create a resource id with video id and kind.
// $resourceId = new Google_ResourceId();
// $resourceId->setVideoId('SZj6rAYkYOg');
// $resourceId->setKind('youtube#video');
// b. Create a snippet with resource id.
/* $playlistItemSnippet = new Google_PlaylistItemSnippet();
$playlistItemSnippet->setTitle('First video in the test playlist');
$playlistItemSnippet->setPlaylistId($playlistResponse['id']);
$playlistItemSnippet->setResourceId($resourceId);*/
// c. Create a playlist item request request with snippet.
// $playlistItem = new Google_PlaylistItem();
// $playlistItem->setSnippet($playlistItemSnippet);
// d. Execute the request and return an object containing information about the
// new playlistItem
$playlistItemResponse = $youtube->playlists->listPlaylists('snippet', array(
'mine' => 'true',
) );
foreach ($playlistItemResponse['items'] as $playlistItem) {
$playlistItemsResponse = $youtube->playlistItems->listPlaylistItems('snippet', array(
'playlistId' => $playlistItem['id']));
foreach ($playlistItemsResponse['items'] as $playlistItems) {
print_r($playlistItems['snippet']['title']);
if(strcmp($playlistItems['snippet']['title'],"Charlie bit my finger - again !")==0)
{
print_r('sssssssss');
}
print_r($playlistItems['snippet']['resourceId']['videoId']);
}
}
print_r('ddddddddd');
if(strcmp("xx","Charlie bit my finger - again !")==0)
{
print_r('sssssssss');
}
// print_r($playlistItem);
// print_r(($youtube->playlistItems->listPlaylistItems('snippet',array('playlistId' => $playlistItem['id']))['items']['snippet']['resourceId']['videoId']));
// print_r($playlistItem['visitorId']);
/* $htmlBody .= "<h3>New Playlist</h3><ul>";
$htmlBody .= sprintf('<li>%s (%s)</li>',
$playlistResponse['snippet']['title'],
$playlistResponse['id']);
$htmlBody .= '</ul>';*/
// print_r($playlistItemResponse['id']);
/* $htmlBody .= "<h3>New PlaylistItem</h3><ul>";
$htmlBody .= sprintf('<li>%s (%s)</li>',
$playlistItemResponse['snippet']['title'],
$playlistItemResponse['id']);
$htmlBody .= '</ul>';*/
$resourceId = new Google_ResourceId();
$resourceId->setVideoId('orfMJJEd0wk');
$resourceId->setKind('youtube#video');
// b. Create a snippet with resource id.
$playlistItemSnippet = new Google_PlaylistItemSnippet();
$playlistItemSnippet->setTitle('First video in the test playlist');
$playlistItemSnippet->setPlaylistId('PL1RRUO3xZZYZVRlmKhADJd8XuGoVQRjmv');
$playlistItemSnippet->setResourceId($resourceId);
// c. Create a playlist item request request with snippet.
$playlistItem = new Google_PlaylistItem();
$playlistItem->setSnippet($playlistItemSnippet);
// d. Execute the request and return an object containing information about the
// new playlistItem
$playlistItemResponse = $youtube->playlistItems->insert('snippet,contentDetails',
$playlistItem, array());
} catch (Google_ServiceException $e) {
$htmlBody .= sprintf('<p>A service error occurred: <code>%s</code></p>',
htmlspecialchars($e->getMessage()));
} catch (Google_Exception $e) {
$htmlBody .= sprintf('<p>An client error occurred: <code>%s</code></p>',
htmlspecialchars($e->getMessage()));
}
$_SESSION['token'] = $client->getAccessToken();
} else {
// If the user hasn't authorized the app, initiate the OAuth flow
$state = mt_rand();
$client->setState($state);
$_SESSION['state'] = $state;
$authUrl = $client->createAuthUrl();
$htmlBody = <<<END
<h3>Authorization Required</h3>
<p>You need to <a href="$authUrl">authorize access</a> before proceeding.<p>
END;
}
?>
<!doctype html>
<html>
<head>
<title>New Playlist</title>
</head>
<body>
<?=$htmlBody?>
</body>
</html>