aboutsummaryrefslogtreecommitdiff
path: root/src/playlists-menu-item.vala
blob: 4666a50a4424f21681a7a1b4a8ec3a304c5f0852 (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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
Copyright 2010 Canonical Ltd.

Authors:
    Conor Curran <conor.curran@canonical.com>

This program is free software: you can redistribute it and/or modify it 
under the terms of the GNU General Public License version 3, as published 
by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but 
WITHOUT ANY WARRANTY; without even the implied warranties of 
MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along 
with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

using Config;
using Dbusmenu;
using DbusmenuPlaylists;
using DbusmenuPlaylist;
using Gee;


public class PlaylistsMenuitem : PlayerItem
{
  private HashMap<int, Dbusmenu.Menuitem> current_playlists;    
  public Menuitem root_item;
  
  public PlaylistsMenuitem ( PlayerController parent )
  {
    Object ( item_type: MENUITEM_TYPE, owner: parent );
  }

  construct{
    this.current_playlists = new HashMap<int, Dbusmenu.Menuitem>();
    this.root_item = new Menuitem();
    this.root_item.property_set ( MENUITEM_PROP_LABEL, _("Choose Playlist") );
    this.root_item.property_set ( MENUITEM_PATH, "" );
  }

  public new void update (PlaylistDetails[] playlists)
  {
    foreach ( PlaylistDetails detail in playlists ){
      // We don't want to list playlists which are for videos)'
      if (this.already_observed(detail) || this.is_video_related(detail))
        continue;
      
      Dbusmenu.Menuitem menuitem = new Menuitem();
      menuitem.property_set (MENUITEM_PROP_LABEL,
                             truncate_item_label_if_needs_be (detail.name));
      menuitem.property_set (MENUITEM_PROP_ICON_NAME, "playlist-symbolic");

      menuitem.property_set (MENUITEM_PATH, (string)detail.path);
      menuitem.property_set_bool (MENUITEM_PROP_VISIBLE, true);
      menuitem.property_set_bool (MENUITEM_PROP_ENABLED, true);
      
      menuitem.item_activated.connect(() => {
        submenu_item_activated (menuitem.id );
        }
      );
      this.current_playlists.set( menuitem.id, menuitem ); 
      this.root_item.child_append( menuitem );
      debug ("populating valid playlists %s", detail.name);
    }
    // Finally remove any that might have been deleted
    foreach (Dbusmenu.Menuitem item in this.current_playlists.values) {
      bool within = false;
      foreach (PlaylistDetails detail in playlists){
        if (detail.path == item.property_get (MENUITEM_PATH)) {
          within = true;
          break;
        }
      }
      if (within == false){
        if (this.root_item.property_get (MENUITEM_PATH) == item.property_get (MENUITEM_PATH)){
          this.root_item.property_set (MENUITEM_PROP_LABEL, _("Choose Playlist"));        
        }
        this.root_item.child_delete (item);
      }
    }
  }

  public void update_individual_playlist (PlaylistDetails new_detail)
  {
    foreach ( Dbusmenu.Menuitem item in this.current_playlists.values ){
      if (new_detail.path == item.property_get (MENUITEM_PATH)){
        item.property_set (MENUITEM_PROP_LABEL, 
                           truncate_item_label_if_needs_be (new_detail.name));
      }
    }
    // If its active make sure the name is updated on the root item.
    if (this.root_item.property_get (MENUITEM_PATH) == new_detail.path) {
      this.root_item.property_set (MENUITEM_PROP_LABEL,
                                   truncate_item_label_if_needs_be (new_detail.name));          
    }
  }
                                                  
  private bool already_observed (PlaylistDetails new_detail)
  {
    foreach ( Dbusmenu.Menuitem item in this.current_playlists.values ){
      var path = item.property_get (MENUITEM_PATH);
      if (new_detail.path == path) return true;
    }
    return false;
  }

  private bool is_video_related (PlaylistDetails new_detail)
  {
    var location = (string)new_detail.path;
    if (location.contains ("/VideoLibrarySource/")) return true;
    return false;
  }

  public void active_playlist_update (PlaylistDetails detail)
  {
    var update = detail.name; 
    if ( update == "" ) update = _("Choose Playlist");
    this.root_item.property_set (MENUITEM_PROP_LABEL,
                                 truncate_item_label_if_needs_be(update));  
    this.root_item.property_set (MENUITEM_PATH, detail.path);  
  }
  
  private void submenu_item_activated (int menu_item_id)
  {
    if (!this.current_playlists.has_key(menu_item_id)) {
      warning( "item %i was activated but we don't have a corresponding playlist",
               menu_item_id );
      return;
    }
    this.owner.mpris_bridge.activate_playlist ( (GLib.ObjectPath)this.current_playlists[menu_item_id].property_get (MENUITEM_PATH) );
  }
  
  private string truncate_item_label_if_needs_be(string item_label)
  {
    var result = item_label;
    if (item_label.char_count(-1) > 17){
      result = item_label.slice ((long)0, (long)15);
      result += "…";
    }
    return result;
  }
  
  public static HashSet<string> attributes_format()
  {
    HashSet<string> attrs = new HashSet<string>();    
    attrs.add(MENUITEM_TITLE);
    attrs.add(MENUITEM_PLAYLISTS);
    return attrs;
  } 
  
}