Skip to content
Extraits de code Groupes Projets
Valider 51778cb2 rédigé par Ilya Zhitomirskiy's avatar Ilya Zhitomirskiy
Parcourir les fichiers

storing the entriety of the service profile name in first name

parent 083f7883
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -81,16 +81,9 @@ class Profile < ActiveRecord::Base
def from_omniauth_hash(omniauth_user_hash)
mappings = {"description" => "bio",
'image' => 'image_url',
'first_name' => 'first_name',
'last_name' => 'last_name',
'name' => 'first_name',
'location' => 'location',
'name' => 'full_name'
}
if(omniauth_user_hash['first_name'].blank? || omniauth_user_hash['last_name'].blank?) && omniauth_user_hash['name'].present?
first, last = omniauth_user_hash['name'].split
omniauth_user_hash['first_name'] ||= first
omniauth_user_hash['last_name'] ||= last
end
update_hash = Hash[omniauth_user_hash.map {|k, v| [mappings[k], v] }]
......
......@@ -36,13 +36,20 @@ describe Profile do
it 'outputs a hash that can update a diaspora profile' do
profile = Profile.new
profile.from_omniauth_hash(@from_omniauth)['first_name'].should == 'bob'
profile.from_omniauth_hash(@from_omniauth)['bio'].should == 'this is my bio'
end
it 'does not overwrite any exsisting profile fields' do
profile = Profile.new(:first_name => 'maxwell')
profile.from_omniauth_hash(@from_omniauth)['first_name'].should == 'maxwell'
end
it 'sets full name to first name' do
@from_omniauth = {'name' => 'bob jones', 'description' => 'this is my bio', 'location' => 'sf', 'image' => 'http://cats.com/gif.gif'}
profile = Profile.new
profile.from_omniauth_hash(@from_omniauth)['first_name'].should == 'bob jones'
end
end
describe '#contruct_full_name' do
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter