This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
2008-10-01 02:19:35 -04:00
|
|
|
class Favorites < Application
|
2008-10-11 04:22:58 -04:00
|
|
|
before :logged_in?
|
|
|
|
before :fetch_allowed_user, :only => [ :show ]
|
|
|
|
only_provides :xml
|
|
|
|
|
|
|
|
def show
|
|
|
|
only_provides :html
|
|
|
|
@photos = @user.favorite_photos
|
2008-10-01 02:19:35 -04:00
|
|
|
render
|
|
|
|
end
|
|
|
|
|
2008-10-11 04:22:58 -04:00
|
|
|
def create
|
|
|
|
raise NotAllowed unless request.xhr?
|
|
|
|
@photo = Photo.find params[:id]
|
|
|
|
pf = PhotoFavorite.new :photo_id => @photo.id, :user_id => current_user.id
|
|
|
|
if pf.save
|
|
|
|
render '', :status => 200
|
|
|
|
else
|
|
|
|
render '', :status => 403
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete
|
|
|
|
raise NotAllowed unless request.xhr?
|
|
|
|
pf = PhotoFavorite.find params[:id], :include => :user
|
|
|
|
if pf.user == current_user and pf.destroy
|
|
|
|
render '', :status => 200
|
|
|
|
else
|
|
|
|
render '', :status => 403
|
|
|
|
end
|
|
|
|
end
|
2008-10-01 02:19:35 -04:00
|
|
|
end
|