36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
class Youtube_Subscription extends Plugin {
|
|
private $host;
|
|
|
|
function about() {
|
|
return array(1.0,
|
|
"Allows subscribing to YouTube Channel Atom feeds via youtube.com/channel/<channel ID> URLs",
|
|
"GoneWacko");
|
|
}
|
|
|
|
function init($host) {
|
|
$this->host = $host;
|
|
$host->add_hook($host::HOOK_SUBSCRIBE_FEED, $this);
|
|
}
|
|
|
|
// url samples:
|
|
// https://www.youtube.com/channel/UCH6rAZUDfVIoVSJjm3vlcnw/featured
|
|
// https://www.youtube.com/channel/UCH6rAZUDfVIoVSJjm3vlcnw/videos
|
|
// https://www.youtube.com/user/epenser1
|
|
// https://www.youtube.com/user/epenser1/videos
|
|
// https://www.youtube.com/channel/UC5X4e8ScZI2AFd_vkjSoyoQ
|
|
//
|
|
function hook_subscribe_feed($contents, $url, $auth_login, $auth_pass) {
|
|
if (preg_match("/youtube\.com\/channel\/(UC[^\/]*)(\/.*)?$/", $url, $matches) === 1) {
|
|
$channel_id = $matches[1];
|
|
$contents = "<html><head><link rel=\"alternate\" type=\"application/atom+xml\" href=\"https://www.youtube.com/feeds/videos.xml?channel_id=$channel_id\" /></head><body></body></html>";
|
|
}
|
|
return $contents;
|
|
}
|
|
|
|
function api_version() {
|
|
return 2;
|
|
}
|
|
}
|
|
?>
|