2011-06-14 16:05:12 +00:00
|
|
|
class Artist < ActiveRecord::Base
|
2011-09-26 05:22:18 +00:00
|
|
|
has_many :albums, :conditions => ['has_pic = 1'], :order => 'year ASC', :dependent => :destroy
|
2011-09-20 20:30:42 +00:00
|
|
|
has_many :artist_links, :dependent => :destroy
|
2011-09-21 23:20:41 +00:00
|
|
|
has_many :artist_aliases, :dependent => :destroy
|
|
|
|
has_many :tracks, :through => :track_artists
|
2011-10-20 11:01:57 +00:00
|
|
|
|
|
|
|
after_initialize :prepare_description
|
|
|
|
|
|
|
|
def status_str
|
|
|
|
%w(loading ok fail)[self.status]
|
|
|
|
end
|
|
|
|
|
|
|
|
def prepare_description
|
2011-10-20 18:16:46 +00:00
|
|
|
self.desc.gsub! /[\[<].*?[\]>]/, '' unless self.desc.nil?
|
2011-10-20 11:01:57 +00:00
|
|
|
end
|
2011-06-14 16:05:12 +00:00
|
|
|
end
|