mirror of
https://git.lecygnenoir.info/LecygneNoir/prismedia.git
synced 2025-10-03 01:19:15 +02:00
Add new feature to combine channel and playlist on peertube 🎉
This commit is contained in:
parent
322774a214
commit
44875b3567
2 changed files with 67 additions and 7 deletions
|
@ -55,6 +55,50 @@ def get_default_channel(user_info):
|
|||
return user_info['videoChannels'][0]['id']
|
||||
|
||||
|
||||
def get_channel_by_name(user_info, options):
|
||||
for channel in user_info["videoChannels"]:
|
||||
if channel['displayName'].encode('utf8') == str(options.get('--channel')):
|
||||
return channel['id']
|
||||
|
||||
|
||||
def create_channel(oauth, url, options):
|
||||
template = ('Peertube: Channel %s does not exist, creating it.')
|
||||
logging.info(template % (str(options.get('--channel'))))
|
||||
channel_name = utils.cleanString(str(options.get('--channel')))
|
||||
# Peertube allows 20 chars max for channel name
|
||||
channel_name = channel_name[:19]
|
||||
data = '{"name":"' + channel_name +'", \
|
||||
"displayName":"' + str(options.get('--channel')) +'", \
|
||||
"description":null}'
|
||||
|
||||
headers = {
|
||||
'Content-Type': "application/json"
|
||||
}
|
||||
try:
|
||||
response = oauth.post(url + "/api/v1/video-channels/",
|
||||
data=data,
|
||||
headers=headers)
|
||||
except Exception as e:
|
||||
if hasattr(e, 'message'):
|
||||
logging.error("Error: " + str(e.message))
|
||||
else:
|
||||
logging.error("Error: " + str(e))
|
||||
if response is not None:
|
||||
if response.status_code == 200:
|
||||
jresponse = response.json()
|
||||
jresponse = jresponse['videoChannel']
|
||||
return jresponse['id']
|
||||
if response.status_code == 409:
|
||||
logging.error('Peertube: Error: It seems there is a conflict with an existing channel, please beware '
|
||||
'Peertube internal name is compiled from 20 firsts characters of channel name.'
|
||||
' Please check your channel name and retry.')
|
||||
exit(1)
|
||||
else:
|
||||
logging.error(('Peertube: Creating channel failed with an unexpected response: '
|
||||
'%s') % response)
|
||||
exit(1)
|
||||
|
||||
|
||||
def get_default_playlist(user_info):
|
||||
return user_info['videoChannels'][0]['id']
|
||||
|
||||
|
@ -65,7 +109,7 @@ def get_playlist_by_name(user_playlists, options):
|
|||
return playlist['id']
|
||||
|
||||
|
||||
def create_playlist(oauth, url, options, default_channel):
|
||||
def create_playlist(oauth, url, options, channel):
|
||||
template = ('Peertube: Playlist %s does not exist, creating it.')
|
||||
logging.info(template % (str(options.get('--playlist'))))
|
||||
# We use files for form-data Content
|
||||
|
@ -74,7 +118,7 @@ def create_playlist(oauth, url, options, default_channel):
|
|||
files = {'displayName': (None, str(options.get('--playlist'))),
|
||||
'privacy': (None, "1"),
|
||||
'description': (None, "null"),
|
||||
'videoChannelId': (None, str(default_channel)),
|
||||
'videoChannelId': (None, str(channel)),
|
||||
'thumbnailfile': (None, "null")}
|
||||
try:
|
||||
response = oauth.post(url + "/api/v1/video-playlists/",
|
||||
|
@ -199,13 +243,22 @@ def upload_video(oauth, secret, options):
|
|||
fields.append(("thumbnailfile", get_file(options.get('--thumbnail'))))
|
||||
fields.append(("previewfile", get_file(options.get('--thumbnail'))))
|
||||
|
||||
default_channel = get_default_channel(user_info)
|
||||
fields.append(("channelId", str(default_channel)))
|
||||
if options.get('--channel'):
|
||||
channel_id = get_channel_by_name(user_info, options)
|
||||
if not channel_id and options.get('--channelCreate'):
|
||||
channel_id = create_channel(oauth, url, options)
|
||||
elif not channel_id:
|
||||
logging.warning("Channel `" + options.get('--channel') + "` is unknown, using default channel.")
|
||||
channel_id = get_default_channel(user_info)
|
||||
else:
|
||||
channel_id = get_default_channel(user_info)
|
||||
|
||||
fields.append(("channelId", str(channel_id)))
|
||||
|
||||
if options.get('--playlist'):
|
||||
playlist_id = get_playlist_by_name(user_playlists, options)
|
||||
if not playlist_id and options.get('--playlistCreate'):
|
||||
playlist_id = create_playlist(oauth, url, options, default_channel)
|
||||
playlist_id = create_playlist(oauth, url, options, channel_id)
|
||||
elif not playlist_id:
|
||||
logging.warning("Playlist `" + options.get('--playlist') + "` does not exist, please set --playlistCreate"
|
||||
" if you want to create it")
|
||||
|
|
|
@ -24,7 +24,8 @@ Options:
|
|||
--disable-comments Disable comments (Peertube only as YT API does not support) (default: comments are enabled)
|
||||
--nsfw Set the video as No Safe For Work (Peertube only as YT API does not support) (default: video is safe)
|
||||
--nfo=STRING Configure a specific nfo file to set options for the video.
|
||||
By default Prismedia search a .txt based on video name
|
||||
By default Prismedia search a .txt based on the video name and will
|
||||
decode the file as UTF-8 (so make sure your nfo file is UTF-8 encoded)
|
||||
See nfo_example.txt for more details
|
||||
--platform=STRING List of platform(s) to upload to, comma separated.
|
||||
Supported platforms are youtube and peertube (default is both)
|
||||
|
@ -36,8 +37,12 @@ Options:
|
|||
--thumbnail=STRING Path to a file to use as a thumbnail for the video.
|
||||
Supported types are jpg and jpeg.
|
||||
By default, prismedia search for an image based on video name followed by .jpg or .jpeg
|
||||
--channel=STRING Set the channel to use for the video (Peertube only)
|
||||
If the channel is not found, spawn an error except if --channelCreate is set.
|
||||
--channelCreate Create the channel if not exists. (Peertube only, default do not create)
|
||||
Only relevant if --channel is set.
|
||||
--playlist=STRING Set the playlist to use for the video. Also known as Channel for Peertube.
|
||||
If the playlist is not found, spawn an error except if --playlist-create is set.
|
||||
If the playlist is not found, spawn an error except if --playlistCreate is set.
|
||||
--playlistCreate Create the playlist if not exists. (default do not create)
|
||||
Only relevant if --playlist is set.
|
||||
-h --help Show this help.
|
||||
|
@ -207,6 +212,8 @@ if __name__ == '__main__':
|
|||
Optional('--thumbnail'): Or(None, And(
|
||||
str, validateThumbnail, error='thumbnail is not supported, please use jpg/jpeg'),
|
||||
),
|
||||
Optional('--channel'): Or(None, str),
|
||||
Optional('--channelCreate'): bool,
|
||||
Optional('--playlist'): Or(None, str),
|
||||
Optional('--playlistCreate'): bool,
|
||||
'--help': bool,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue