After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 676366 - Add Ampache plugin
Add Ampache plugin
Status: RESOLVED OBSOLETE
Product: grilo
Classification: Other
Component: source requests
git master
Other Linux
: Normal enhancement
: ---
Assigned To: grilo-maint
grilo-maint
Depends on: 753416
Blocks: 708937
 
 
Reported: 2012-05-19 12:14 UTC by Gendre Sébastien
Modified: 2018-09-24 09:20 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Intial version of the ampache plugin. (35.06 KB, patch)
2014-06-22 21:30 UTC, Sai Suman Prayaga
needs-work Details | Review
Attachment to the patch. (36.19 KB, patch)
2014-08-21 17:44 UTC, Sai Suman Prayaga
rejected Details | Review
lua-factory: Support GoaPasswordBased (2.88 KB, patch)
2016-06-06 12:45 UTC, Gaurav Narula
none Details | Review
lua-factory: add get_ampache_passphrase method (4.11 KB, patch)
2016-06-14 09:48 UTC, Gaurav Narula
none Details | Review
lua-factory: add goa_music_uri method (2.11 KB, patch)
2016-06-14 09:50 UTC, Gaurav Narula
none Details | Review
lua-factory: add owncloud lua plugin (5.29 KB, patch)
2016-06-14 09:51 UTC, Gaurav Narula
none Details | Review
lua-factory: Support GoaPasswordBased (3.24 KB, patch)
2016-06-17 12:34 UTC, Gaurav Narula
none Details | Review
lua-factory: add checksum method (2.46 KB, patch)
2016-06-17 12:35 UTC, Gaurav Narula
none Details | Review
lua-factory: add goa_get_uri method (2.47 KB, patch)
2016-06-17 12:35 UTC, Gaurav Narula
none Details | Review
lua-factory: add time method (1.20 KB, patch)
2016-06-17 12:36 UTC, Gaurav Narula
none Details | Review
lua-factory: add ownCloud source (5.78 KB, patch)
2016-06-17 12:37 UTC, Gaurav Narula
none Details | Review
lua-factory: implement query operation in ownCloud source (8.35 KB, patch)
2016-07-30 20:22 UTC, Gaurav Narula
none Details | Review
lua-factory: implement search operation in ownCloud source (2.17 KB, patch)
2016-08-22 21:24 UTC, Gaurav Narula
none Details | Review
lua-factory: factor out code to build media object from ownCloud source (6.36 KB, patch)
2016-08-22 21:25 UTC, Gaurav Narula
none Details | Review
lua-factory: document ownCloud source (2.80 KB, patch)
2016-08-22 21:26 UTC, Gaurav Narula
none Details | Review

Description Gendre Sébastien 2012-05-19 12:14:21 UTC
From the officiel web site[1]: « Ampache is a web based audio/video streaming application and file manager allowing you to access your music & videos from anywhere, using almost any internet enabled device»

Ampache can be using as a streaming server for musics. Streaming music from this server is already integrated in Amarok and Owncloud also use this server for share their musics.

It would be cool to can stream tracks from server and send tracks to server.

All informations for dev are there: http://ampache.org/wiki/


[1] http://ampache.org/
Comment 1 Simon Pena 2012-05-19 13:53:40 UTC
There are plugins for Banshee and Rhythmbox which could be used for inspiration:

 * Banshee - https://gitorious.org/banshee-community-extensions/banshee-community-extensions/trees/master/src/Ampache

 * Rhythmbox - http://code.google.com/p/rhythmbox-ampache/
Comment 2 Sai Suman Prayaga 2014-06-22 21:30:04 UTC
Created attachment 278958 [details] [review]
Intial version of the ampache plugin.
Comment 3 Bastien Nocera 2014-06-23 09:30:50 UTC
Review of attachment 278958 [details] [review]:

The sources needs cleaning up, or the implementation finishing before this can be merged.

I also don't like the fact that we require pre-usage configuration, instead of the username/password being requested when needed, and the server URL through mDNS or similar.

::: src/ampache/grl-ampache.c
@@ +131,3 @@
+static const GList *grl_ampache_source_supported_keys (GrlSource *source);
+
+// static void grl_ampache_source_resolve (GrlSource *source,

You'll need to clean that up.

@@ +187,3 @@
+  source_class->cancel = grl_ampache_source_cancel;
+  source_class->supported_keys = grl_ampache_source_supported_keys;
+  // source_class->resolve = grl_ampache_source_resolve;

Ditto.

@@ +225,3 @@
+xml_count_children (xmlNodePtr node)
+{
+#if (LIBXML2_VERSION >= 20700)

2.7.0: Aug 30 2008
I don't think we need pre-2.7.0 support.

@@ +357,3 @@
+      data->album_name =
+        (gchar *) xmlNodeListGetString (doc, node->xmlChildrenNode, 1);
+      // data->album_id = (gchar *) xmlGetProp (node, (const xmlChar *) "id");

What are those?

@@ +571,3 @@
+  gchar *pass_hash =  g_compute_checksum_for_string(G_CHECKSUM_SHA256, grl_config_get_password(config), -1);
+  gchar *passphrase =  g_compute_checksum_for_string(G_CHECKSUM_SHA256, g_strconcat(current_time,pass_hash, NULL), -1);
+  gchar *url = g_strdup_printf(AMPACHE_GENERATE_AUTH, grl_config_get_string(config, "host_url"), passphrase, current_time, AMPACHE_VERSION, grl_config_get_username(config));

space before parenthesis (everywhere) And that line could do with some indentation.

@@ +626,3 @@
+      update_media_from_artists (media);
+      break;
+    case 1:

skip 1? That looks wrong.

@@ +963,3 @@
+  bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
+  bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+

empty lines.
Comment 4 Sai Suman Prayaga 2014-08-21 17:44:41 UTC
Created attachment 284117 [details] [review]
Attachment to the patch.
Comment 5 Bastien Nocera 2014-09-01 14:28:25 UTC
Review of attachment 284117 [details] [review]:

I'm not too confident that this doesn't leak all over the place.

Could you please run grl-launch-0.2 in a variety of situations with the ampache plugin to make sure that it doesn't leak. The cancellation and error paths are areas where this could be a problem.

::: src/ampache/grl-ampache.c
@@ +240,3 @@
+  xmlDocPtr doc;
+  xmlNodePtr node;
+  struct PluginInfo *plugininfo = (struct PluginInfo *) user_data;

You're leaking the plugininfo that you allocated in generate_api_key()

@@ +561,3 @@
+                                          g_get_real_time ()/1000000);
+  gchar *pass_hash =  g_compute_checksum_for_string (G_CHECKSUM_SHA256,
+                                                     grl_config_get_password (config),

Leaking the password.

@@ +564,3 @@
+                                                     -1);
+  gchar *passphrase =  g_compute_checksum_for_string (G_CHECKSUM_SHA256,
+                                                      g_strconcat (current_time,pass_hash, NULL),

You're leaking the output of g_strconcat()

@@ +567,3 @@
+                                                      -1);
+  gchar *url = g_strdup_printf (AMPACHE_GENERATE_AUTH,
+                                grl_config_get_string (config, "host_url"),

Leaking the host_url.

@@ +570,3 @@
+                                passphrase, current_time,
+                                AMPACHE_VERSION,
+                                grl_config_get_username (config));

Leaking the username.

@@ +966,3 @@
+  bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
+  bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+

Too many linefeeds here.

@@ +985,3 @@
+    return FALSE;
+  }
+  GRL_DEBUG ("no ampache plugin");

"no ampache plugin" ?
Comment 6 Bastien Nocera 2015-09-09 12:24:14 UTC
Comment on attachment 284117 [details] [review]
Attachment to the patch.

As discussed on IRC, the support would be implemented through lua instead.
Comment 7 Bastien Nocera 2015-09-24 13:49:39 UTC
Add to the "request" component.
Comment 8 Gaurav Narula 2016-06-06 12:45:34 UTC
Created attachment 329190 [details] [review]
lua-factory: Support GoaPasswordBased

Allows retrieving password from account objects implementing PasswordBased interface
Comment 9 Bastien Nocera 2016-06-06 13:07:15 UTC
Review of attachment 329190 [details] [review]:

Looks fine to land when there's something actually using it (so we can test it).
Comment 10 Gaurav Narula 2016-06-14 09:48:52 UTC
Created attachment 329768 [details] [review]
lua-factory: add get_ampache_passphrase method
Comment 11 Gaurav Narula 2016-06-14 09:50:47 UTC
Created attachment 329770 [details] [review]
lua-factory: add goa_music_uri method
Comment 12 Gaurav Narula 2016-06-14 09:51:31 UTC
Created attachment 329771 [details] [review]
lua-factory: add owncloud lua plugin
Comment 13 Bastien Nocera 2016-06-14 09:53:12 UTC
Review of attachment 329768 [details] [review]:

We really don't want anything this specific in the lua-factory. Either it needs to be in GOA, or it needs to be in the source.
Comment 14 Bastien Nocera 2016-06-14 09:55:44 UTC
Review of attachment 329770 [details] [review]:

::: src/lua-factory/grl-lua-library.c
@@ +1716,3 @@
+
+    if (object != NULL) {
+      music = goa_object_peek_music (object);

Is "Music" the only account type that can use this? videos_uri?

@@ +1720,3 @@
+    if (music == NULL) {
+      GRL_WARNING ("Source is broken as it tries to access gnome-online-accounts "
+                   "information, but it doesn't declare what account data it "

That's not the right error here.

@@ +1726,3 @@
+    }
+
+    gchar *uri = NULL;

No C-99 declarations.
Comment 15 Bastien Nocera 2016-06-14 10:06:48 UTC
Review of attachment 329771 [details] [review]:

You need some information in the commit message.

You'll also want to make sure to capitalise "ownCloud" in the same way as upstream, and add links to API docs in the code itself.

::: src/lua-factory/sources/grl-owncloud.lua
@@ +42,3 @@
+  },
+  supported_media = 'audio',
+  tags = { 'net:internet', 'net:plaintext'}

It's over the internet, and in plaintext?

You need to disallow creating those sorts of setup in gnome-online-accounts. Either it's plaintext and local network only, or it needs to be encrypted. You don't want your owncloud password in cleartext over the internet.

@@ +49,3 @@
+
+function grl_source_init (config)
+  if (config) then

What is it you're trying to implement here? It needs to either use configuration data, or GOA, not both.

@@ +60,3 @@
+
+  ldata.username, ldata.ampache_password = grl.goa_password ("ampache_password")
+  ldata.username, ldata.password = grl.goa_password ("password")

Why are you setting the username twice?

@@ +77,3 @@
+  local passphrase, timestamp = grl.get_ampache_passphrase (ldata.ampache_password)
+  auth_endpoint =
+    ldata.ampache_uri .. string.format (

how about string.format (ldata.ampache_uri .. "?action...

@@ +87,3 @@
+    loglevel = 1,
+    headers = {
+      Authorization = string.format ("Basic %s", base64_credential)

Any way to pass this in GET instead?

@@ +131,3 @@
+
+  for i, song in pairs (res.root.song) do
+    count = count - 1

Remove one.

@@ +143,3 @@
+    media.duration = song.time.xml
+
+    count = count - 1

And again. I think you might come short.

@@ +156,3 @@
+
+-- base64 encoding
+-- refer to http://lua-users.org/wiki/BaseSixtyFour

It's LGPLv2 and has an author, best update the copyright.

@@ +159,3 @@
+local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
+
+function enc(data)

base64_enc()
Comment 16 Gaurav Narula 2016-06-17 12:34:36 UTC
Created attachment 329947 [details] [review]
lua-factory: Support GoaPasswordBased
Comment 17 Gaurav Narula 2016-06-17 12:35:15 UTC
Created attachment 329948 [details] [review]
lua-factory: add checksum method
Comment 18 Gaurav Narula 2016-06-17 12:35:56 UTC
Created attachment 329949 [details] [review]
lua-factory: add goa_get_uri method
Comment 19 Gaurav Narula 2016-06-17 12:36:35 UTC
Created attachment 329950 [details] [review]
lua-factory: add time method
Comment 20 Gaurav Narula 2016-06-17 12:37:07 UTC
Created attachment 329951 [details] [review]
lua-factory: add ownCloud source
Comment 21 Gaurav Narula 2016-07-30 20:22:27 UTC
Created attachment 332408 [details] [review]
lua-factory: implement query operation in ownCloud source
Comment 22 Gaurav Narula 2016-08-22 21:24:34 UTC
Created attachment 333943 [details] [review]
lua-factory: implement search operation in ownCloud source
Comment 23 Gaurav Narula 2016-08-22 21:25:38 UTC
Created attachment 333944 [details] [review]
lua-factory: factor out code to build media object from ownCloud source
Comment 24 Gaurav Narula 2016-08-22 21:26:11 UTC
Created attachment 333945 [details] [review]
lua-factory: document ownCloud source
Comment 25 Andres Gomez 2017-08-24 11:36:57 UTC
Is the new patch set good for landing? I'd like very much to see this plugin in grilo.
Comment 26 Victor Toso 2017-09-14 12:19:45 UTC
JFYI, adding this to my todo to review early next week. Sorry for the delay!
Comment 27 GNOME Infrastructure Team 2018-09-24 09:20:47 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to GNOME's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/grilo/issues/23.