aboutsummaryrefslogtreecommitdiff
path: root/src/metadata-menu-item.vala
blob: 28e034ac5619c426f808d515b4d16f5cdaaf5877 (plain)
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
using Dbusmenu;
using Gee;
using CommonDefs;

public class MetadataMenuitem : PlayerItem
{
	/* Not ideal duplicate definition of const - see common-defs/h */
 	//const string DBUSMENU_METADATA_MENUITEM_TYPE = "x-canonical-metadata-menu-item";
 	//const string DBUSMENU_METADATA_MENUITEM_TEXT_ARTIST = "x-canonical-metadata-text-artist";
 	//const string DBUSMENU_METADATA_MENUITEM_TEXT_TITLE = "x-canonical-metadata-text-title";
 	//const string DBUSMENU_METADATA_MENUITEM_TEXT_ALBUM = "x-canonical-metadata-text-album";
	//const string DBUSMENU_METADATA_MENUITEM_IMAGE_PATH = "x-canonical-metadata-image";

	public MetadataMenuitem()
  {
		this.property_set(MENUITEM_PROP_TYPE, DBUSMENU_METADATA_MENUITEM_TYPE);
		
	}

	public override void update(HashMap<string, string> data)
	{
		this.property_set(DBUSMENU_METADATA_MENUITEM_TEXT_ARTIST, data.get("artist").strip());
		this.property_set(DBUSMENU_METADATA_MENUITEM_TEXT_PIECE, data.get("title").strip());
		this.property_set(DBUSMENU_METADATA_MENUITEM_TEXT_CONTAINER, data.get("album").strip());
		this.property_set(DBUSMENU_METADATA_MENUITEM_IMAGE_PATH, sanitize_image_path(data.get("arturl")));
	}

	public static string sanitize_image_path(string path)
	{
		string result = path.strip();
		if(result.has_prefix("file:///")){
			result = result.slice(7, result.len());		                   
		}
		debug("Sanitize image path - result = %s", result);
		return result;
	}
		
	public override void handle_event(string name, GLib.Value input_value, uint timestamp)
	{
		debug("MetadataItem -> handle event caught!");
	}	

	public static HashMap<string, Type> attributes()
	{
		HashMap<string, Type> result = new HashMap<string, Type>();
		result.set(DBUSMENU_METADATA_MENUITEM_TEXT_ARTIST, typeof(string));
		result.set("x-canonical-metadata-text-title", typeof(string));
		result.set("x-canonical-metadata-text-album", typeof(string));
		result.set("x-canonical-metadata-text-image", typeof(string));
		
		return result;
	}
	
}