mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 03:10:46 -06:00
FIX: Get correct selectable avatar from URL (#10339)
The URL for selectable avatars was 'cooked' which means that the find_by method was not enough.
This commit is contained in:
parent
e6349685d3
commit
2682da81ad
@ -1134,11 +1134,11 @@ class UsersController < ApplicationController
|
||||
return render json: failed_json, status: 422
|
||||
end
|
||||
|
||||
unless SiteSetting.selectable_avatars[url]
|
||||
unless upload = Upload.get_from_url(url)
|
||||
return render json: failed_json, status: 422
|
||||
end
|
||||
|
||||
unless upload = Upload.find_by(url: url)
|
||||
unless SiteSetting.selectable_avatars[upload.url]
|
||||
return render json: failed_json, status: 422
|
||||
end
|
||||
|
||||
|
@ -1152,7 +1152,7 @@ class User < ActiveRecord::Base
|
||||
if SiteSetting.selectable_avatars_enabled? && SiteSetting.selectable_avatars.present?
|
||||
urls = SiteSetting.selectable_avatars.split("\n")
|
||||
if urls.present?
|
||||
if upload = Upload.find_by(url: urls.sample)
|
||||
if upload = Upload.get_from_url(urls.sample)
|
||||
update_column(:uploaded_avatar_id, upload.id)
|
||||
UserAvatar.create!(user_id: id, custom_upload_id: upload.id)
|
||||
end
|
||||
|
@ -2377,6 +2377,17 @@ describe UsersController do
|
||||
expect(user.reload.uploaded_avatar_id).to eq(avatar1.id)
|
||||
expect(user.user_avatar.reload.custom_upload_id).to eq(avatar1.id)
|
||||
end
|
||||
|
||||
it 'can succesfully select an avatar using a cooked URL' do
|
||||
events = DiscourseEvent.track_events do
|
||||
put "/u/#{user.username}/preferences/avatar/select.json", params: { url: UrlHelper.cook_url(avatar1.url) }
|
||||
end
|
||||
|
||||
expect(events.map { |event| event[:event_name] }).to include(:user_updated)
|
||||
expect(response.status).to eq(200)
|
||||
expect(user.reload.uploaded_avatar_id).to eq(avatar1.id)
|
||||
expect(user.user_avatar.reload.custom_upload_id).to eq(avatar1.id)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user