3 #include "D:/Rise Base/RakNet/Source/TCPInterface.h" 4 #include "D:/Rise Base/RakNet/Source/GetTime.h" 5 #include "D:/Rise Base/RakNet/Source/RakSleep.h" 6 #include "D:/Rise Base/RakNet/Source/Base64Encoder.h" 7 #include "D:/Rise Base/RakNet/Source/HTTPConnection.h" 28 if (command.
delay != 0.0f)
continue;
30 if (command.
name ==
"YouTubePublish")
40 std::string authToken =
Login();
41 if (authToken.empty())
47 RakNet::TCPInterface tcp;
48 RakNet::HTTPConnection http;
49 http.Init(&tcp,
"uploads.gdata.youtube.com", 80);
51 std::string apiUrl =
"/feeds/api/users/default/uploads";
52 std::string boundary =
"f93dcbA3";
54 std::string header =
"";
55 header +=
"Authorization: GoogleLogin auth=" + authToken +
"\n";
56 header +=
"Content-Type: multipart/related; boundary=\"" + boundary +
"\"\n";
57 header +=
"GData-Version: 2.1\n";
59 header +=
"Slug: test.mp4\n";
60 header +=
"Connection: close\n";
62 std::string body =
"";
63 body +=
"--" + boundary +
"\n";
64 body +=
"Content-Type: application/atom+xml; charset=UTF-8\n";
66 body +=
"<?xml version=\"1.0\"?>\n";
67 body +=
"<entry xmlns=\"http://www.w3.org/2005/Atom\"\n";
68 body +=
" xmlns:media=\"http://search.yahoo.com/mrss/\"\n";
69 body +=
" xmlns:yt=\"http://gdata.youtube.com/schemas/2007\">\n";
70 body +=
" <media:group>\n";
71 body +=
" <media:title type=\"plain\">" + params.
title +
"</media:title>\n";
72 body +=
" <media:description type=\"plain\">\n";
74 body +=
" </media:description>\n";
75 body +=
" <media:category\n";
76 body +=
" scheme=\"http://gdata.youtube.com/schemas/2007/categories.cat\">" + params.
category +
"\n";
77 body +=
" </media:category>\n";
78 body +=
" <media:keywords>" + params.
keywords +
"</media:keywords>\n";
79 body +=
" </media:group>\n";
80 if (params.
privacy == PrivacyEnum::Unlisted)
82 body +=
" <yt:accessControl action='list' permission='denied' />\n";
85 body +=
"--" + boundary +
"\n";
86 body +=
"Content-Type: video/mp4\n";
87 body +=
"Content-Transfer-Encoding: base64\n";
91 _sopen_s(&handle, params.
pathfilename.c_str(), _O_RDONLY | _O_BINARY, SH_DENYNO, S_IWRITE);
94 std::string msg =
"YouTube::Publish Could not open file: " + params.
pathfilename;
99 int bytes = _filelength(handle);
100 void* data = malloc(bytes);
101 _read(handle, data, bytes);
104 char* outputData =
new char[bytes * 3];
105 Base64Encoding(static_cast<unsigned char *>(data), bytes, outputData);
107 SAFE_DELETE(outputData);
110 body +=
"--" + boundary +
"--";
112 http.Post(apiUrl.c_str(), body.c_str(), header.c_str());
114 if (!tcp.Start(0, 0))
120 logger->
Log(
"YouTube::Publish Processing HTTP POST...");
121 RakNet::TimeMS timeoutTime = RakNet::GetTimeMS() + 60000;
122 while (RakNet::GetTimeMS() < timeoutTime)
124 RakNet::Packet* packet = tcp.Receive();
127 http.ProcessTCPPacket(packet);
128 tcp.DeallocatePacket(packet);
135 RakNet::RakString fileContents;
136 if (http.HasBadResponse(&code, &fileContents))
142 fileContents = http.Read();
143 url = fileContents.C_String();
144 UINT ordinal = url.find(
"href='");
145 if (ordinal != url.npos)
147 UINT endOrdinal = url.find(
"&feature=youtube_gdata'");
148 if (endOrdinal != url.npos)
151 url = url.substr(ordinal, endOrdinal - ordinal);
152 std::string msg =
"YouTube::Publish Success! Returning: " + url;
177 if (RakNet::GetTimeMS() >= timeoutTime)
191 std::string authToken =
"";
193 RakNet::TCPInterface tcp;
194 RakNet::HTTPConnection http;
195 http.Init(&tcp,
"www.google.com", 443);
198 http.Get(url.c_str());
200 if (!tcp.Start(0, 0))
206 logger->
Log(
"YouTube::Login Starting SSL Client...");
207 tcp.StartSSLClient(http.GetServerAddress());
209 logger->
Log(
"YouTube::Login Processing HTTP GET...");
210 RakNet::TimeMS timeoutTime = RakNet::GetTimeMS() + 5000;
211 while (RakNet::GetTimeMS() < timeoutTime)
213 RakNet::Packet* packet = tcp.Receive();
216 http.ProcessTCPPacket(packet);
217 tcp.DeallocatePacket(packet);
223 RakNet::RakString fileContents = http.Read();
224 authToken = fileContents.C_String();
232 if (RakNet::GetTimeMS() >= timeoutTime)
236 else if (authToken.empty())
242 UINT ordinal = authToken.find(
"Auth=");
244 if (ordinal != std::string::npos)
246 authToken = authToken.substr(ordinal + 5);
248 authToken = authToken.substr(0, authToken.length() - 1);
250 sprintf_s(msg, 999,
"YouTube::Login Returning AuthToken: %s (...)", authToken.substr(0, 32).c_str());
255 logger->
Log(
"YouTube::Login Could not find Auth= in reponse! Response text to follow...",
Logger::Warn);
std::string Publish(PublishParameters publishParameters) const
std::vector< Command > commandStream
std::string Login() const
need to move RakNet post out of this module and just get a pointer to RakNet device! ...
okay, the portable keyboard numbers don't work like the outside keypad because the outside keypad is ...
std::string name
command name
void Log(const char *msg, Level level=Info, int errorCode=0)
These have to be in this order.
void Initialize(Logger *, Bus *, YouTubeConfig *)
float delay
wait number of seconds before executing command