blob: 03c27ce026664fb370c8bd9760f491e181d2e1d4 (
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
|
class Category
include ActiveModel::Model
include ActiveModel::Validations
ATTRIBUTES = %i[id
created_at
updated_at
name
description
metadata_hash].freeze
attr_accessor(*ATTRIBUTES)
attr_reader :attributes
validates :name, presence: true
def initialize(attr = {})
attr.each do |k, v|
send("#{k}=", v) if ATTRIBUTES.include?(k.to_sym)
end
end
def attributes
@id = @name
@created_at ||= DateTime.now
@updated_at = DateTime.now
ATTRIBUTES.each_with_object({}) do |attr, hash|
if (value = send(attr))
hash[attr] = value
end
end
end
alias to_hash attributes
# Determines if the document model needs an update from the repository model
#
# @param [Portage::Repository::Category] category_model
def needs_import?(category_model)
metadata_hash != category_model.metadata_hash
end
# Populates values from a repository category model
#
# @param [Portage::Repository::Category] category_model Input category model
def import(category_model)
self.name = category_model.name
self.description = category_model.description
self.metadata_hash = category_model.metadata_hash
end
# Populates values from a repository category model and saves
#
# @param [Portage::Repository::Category] category_model Input category model
def import!(category_model)
import(category_model)
CategoryRepository.save(self)
end
# Returns the URL parameter for referencing this package (Rails internal stuff)
def to_param
name
end
end
|