primo upload
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace Vanguard\Services\Auth\Social;
|
||||
|
||||
use Laravel\Socialite\Contracts\User as SocialUser;
|
||||
|
||||
trait ManagesSocialAvatarSize
|
||||
{
|
||||
/**
|
||||
* Get appropriate image size for a specific provider.
|
||||
*
|
||||
* @param $provider
|
||||
* @param SocialUser $socialUser
|
||||
* @return mixed|string
|
||||
*/
|
||||
protected function getAvatarForProvider($provider, SocialUser $socialUser)
|
||||
{
|
||||
if ($provider == 'facebook') {
|
||||
return str_replace('width=1920', 'width=150', $socialUser->avatar_original);
|
||||
}
|
||||
|
||||
if ($provider == 'google') {
|
||||
return $socialUser->avatar_original . '?sz=150';
|
||||
}
|
||||
|
||||
if ($provider == 'twitter') {
|
||||
return str_replace('_normal', '_200x200', $socialUser->getAvatar());
|
||||
}
|
||||
|
||||
return $socialUser->getAvatar();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user