File: staleArtists.rb

package info (click to toggle)
amarok 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 112,344 kB
  • sloc: cpp: 195,053; xml: 4,329; ansic: 2,634; javascript: 673; ruby: 528; python: 507; sh: 252; makefile: 12
file content (33 lines) | stat: -rwxr-xr-x 1,068 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/env ruby
#
# script to remove stale entries in some database tables (artist)
#
# (c) 2006 Roland Gigler <rolandg@web.de>
# License: GNU General Public License V2

system("dcop", "amarok", "playlist", "shortStatusMessage", "Removing stale 'artist' entries from the database")

qresult = `dcop amarok collection query "SELECT id FROM artist;"`
result = qresult.split( "\n" )

i = 0

result.each do |id|
    print "Checking: #{id}, "
    qresult2 = `dcop amarok collection query "SELECT COUNT(*) FROM tags where artist = #{id};"`
    count = qresult2.chomp()
    printf "count: %s\n", count
    if  count == "0"
        i = i + 1
	qresult3 = `dcop amarok collection query "SELECT name FROM artist where id = #{id} ;"`
        result3 = qresult3.split( "\n" )
        puts "==>: Deleting: #{id}, #{result3}"
        system("dcop", "amarok", "collection", "query", "DELETE FROM artist WHERE id = '#{id}'")
    end
end
puts "i: #{i}"

if i > 0
    system("dcop", "amarok", "playlist", "popupMessage", "Removed #{i} stale 'artist' entries from the database")
end