master
E. Almqvist 3 years ago
parent 3864538244
commit 12f7be255a
  1. 25
      src/lib/db_models.rb

@ -338,6 +338,11 @@ class Auction < EntityModel
self.query q self.query q
end end
def self.expired?(id)
ah = self.find_by_id id
ah && ah.expired?
end
def images def images
Image.get_relation @id Image.get_relation @id
end end
@ -347,6 +352,10 @@ class Auction < EntityModel
data && data.map! { |category| Category.find_by_id category["category_id"]} data && data.map! { |category| Category.find_by_id category["category_id"]}
end end
def expired?
Time.now.to_i > @end_time
end
def bids def bids
return [] return []
end end
@ -358,8 +367,22 @@ class Bid < EntityModel
def initialize(data) def initialize(data)
super data super data
@amount = data["amount"].to_f @amount = data["amount"].to_f
# stuff @auction_id = data["auction_id"].to_i
@user_id = data["user_id"].to_i
@message = data["message"]
end
def self.place(ahid, uid, amount, message)
# TODO: check if bid is greater than prev
payload = {
auction_id: ahid,
user_id: uid,
amount: amount,
message: message
}
self.insert(payload)
end end
end end

Loading…
Cancel
Save