-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.pm
137 lines (113 loc) · 2.8 KB
/
Plugin.pm
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
package Plugins::PandoraDirect::Plugin;
# Logitech Media Server Copyright 2001-2023 Logitech.
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License,
# version 2.
use strict;
use base qw(Slim::Plugin::OPMLBased);
use Slim::Utils::Prefs;
use WebService::Pandora;
use WebService::Pandora::Partner::AIR;
use MIME::Base64 (qw/decode_base64/);
use Data::Dumper;
my $partner;
my $pandora;
my $log = Slim::Utils::Log->addLogCategory( {
category => 'plugin.pandoradirect',
defaultLevel => 'DEBUG',
description => 'PLUGIN_PANDORA_DIRECT_DESC',
} );
my $prefs = preferences('plugin.pandoradirect');
sub initPlugin {
my ($class) = @_;
Slim::Player::ProtocolHandlers->registerHandler(
pandoradirect => 'Plugins::PandoraDirect::ProtocolHandler'
);
if (main::WEBUI) {
require Plugins::PandoraDirect::Settings;
Plugins::PandoraDirect::Settings->new();
}
$class->SUPER::initPlugin(
feed => sub {
my ($client, $cb, $args) = @_;
$class->_call('channelList', $client, $cb, $args);
},
tag => 'pandoradirect',
is_app => 1,
weight => 1,
menu => 'radios',
);
}
sub authenticate {
my ( $class, $cb ) = @_;
unless ($partner) {
$log->debug('Creating new partner');
$partner = WebService::Pandora::Partner::AIR->new;
}
unless ($pandora) {
$log->debug('Creating new client');
$pandora = WebService::Pandora->new(
username => $prefs->get('username'),
password => decode_base64($prefs->get('password')),
partner => $partner,
);
}
$pandora->login($cb);
}
sub _call {
my ( $class, $method, $client, $cb, $args ) = @_;
$log->info("API call: $method");
$class->authenticate(
sub {
$class->$method($client, $cb, $args);
}
);
}
sub getPlaylist {
my ($class, $client, $cb, $args) = @_;
$pandora->getPlaylist(
sub {
my $ret = shift;
if ($pandora->error) {
$log->error( $pandora->error );
}
$log->debug("playlist: " . Dumper($ret));
$cb->($ret, $args);
},
%$args,
);
}
sub channelList {
my ($class, $client, $cb, $args) = @_;
if (!$prefs->get('username') || !$prefs->get('password')) {
return $cb->([{
type => 'text',
name => Slim::Utils::Strings::cstring($client, $class->missingCredsString),
}]);
}
$pandora->getStationList(
sub {
my $ret = shift;
my @stations;
for my $station (@{$ret->{stations}}) {
push @stations, {
type => 'link',
play => "pandoradirect://$station->{stationId}.mp3",
on_select => 'play',
items => [],
name => $station->{stationName},
image => $station->{artUrl},
url => \&getStation,
passthrough => [{
stationId => $station->{stationId},
}],
};
}
$cb->(\@stations);
}
);
}
sub missingCredsString {
'PLUGIN_PANDORA_DIRECT_MISSING_CREDS';
}
1;