favoriting now triggers an upvote
This commit is contained in:
@@ -18,14 +18,11 @@ class Favorite < ActiveRecord::Base
|
|||||||
|
|
||||||
return if Favorite.for_user(user.id).where(:user_id => user.id, :post_id => post.id).exists?
|
return if Favorite.for_user(user.id).where(:user_id => user.id, :post_id => post.id).exists?
|
||||||
Favorite.create!(:user_id => user.id, :post_id => post.id)
|
Favorite.create!(:user_id => user.id, :post_id => post.id)
|
||||||
updates = "fav_count = fav_count + 1"
|
Post.where(:id => post.id).update_all("fav_count = fav_count + 1")
|
||||||
updates = "#{updates}, score = score + 1" if user.is_gold?
|
|
||||||
Post.where(:id => post.id).update_all(updates)
|
|
||||||
post.append_user_to_fav_string(user.id)
|
post.append_user_to_fav_string(user.id)
|
||||||
User.where(:id => user.id).update_all("favorite_count = favorite_count + 1")
|
User.where(:id => user.id).update_all("favorite_count = favorite_count + 1")
|
||||||
user.favorite_count += 1
|
user.favorite_count += 1
|
||||||
# post.fav_count += 1 # this is handled in Post#clean_fav_string!
|
# post.fav_count += 1 # this is handled in Post#clean_fav_string!
|
||||||
post.score += 1 if user.is_gold?
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -35,14 +32,11 @@ class Favorite < ActiveRecord::Base
|
|||||||
|
|
||||||
return unless Favorite.for_user(user.id).where(:user_id => user.id, :post_id => post.id).exists?
|
return unless Favorite.for_user(user.id).where(:user_id => user.id, :post_id => post.id).exists?
|
||||||
Favorite.destroy_all(user_id: user.id, post_id: post.id)
|
Favorite.destroy_all(user_id: user.id, post_id: post.id)
|
||||||
updates = "fav_count = fav_count - 1"
|
Post.where(:id => post.id).update_all("fav_count = fav_count - 1")
|
||||||
updates = "#{updates}, score = score - 1" if user.is_gold?
|
|
||||||
Post.where(:id => post.id).update_all(updates)
|
|
||||||
post.delete_user_from_fav_string(user.id)
|
post.delete_user_from_fav_string(user.id)
|
||||||
User.where(:id => user.id).update_all("favorite_count = favorite_count - 1")
|
User.where(:id => user.id).update_all("favorite_count = favorite_count - 1")
|
||||||
user.favorite_count -= 1
|
user.favorite_count -= 1
|
||||||
post.fav_count -= 1
|
post.fav_count -= 1
|
||||||
post.score -= 1 if user.is_gold?
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -840,6 +840,8 @@ class Post < ActiveRecord::Base
|
|||||||
|
|
||||||
def add_favorite!(user)
|
def add_favorite!(user)
|
||||||
Favorite.add(self, user)
|
Favorite.add(self, user)
|
||||||
|
vote!("up")
|
||||||
|
rescue PostVote::Error
|
||||||
end
|
end
|
||||||
|
|
||||||
def delete_user_from_fav_string(user_id)
|
def delete_user_from_fav_string(user_id)
|
||||||
@@ -848,6 +850,8 @@ class Post < ActiveRecord::Base
|
|||||||
|
|
||||||
def remove_favorite!(user)
|
def remove_favorite!(user)
|
||||||
Favorite.remove(self, user)
|
Favorite.remove(self, user)
|
||||||
|
unvote!
|
||||||
|
rescue PostVote::Error
|
||||||
end
|
end
|
||||||
|
|
||||||
def favorited_user_ids
|
def favorited_user_ids
|
||||||
|
|||||||
Reference in New Issue
Block a user