First complete upload CasaDoc

This commit is contained in:
2024-09-18 10:42:19 +02:00
commit 2ab3e52df3
3042 changed files with 407823 additions and 0 deletions
@@ -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();
}
}
@@ -0,0 +1,73 @@
<?php
namespace Vanguard\Services\Auth\Social;
use Illuminate\Support\Str;
use Laravel\Socialite\Contracts\User as SocialUser;
use Vanguard\Repositories\Role\RoleRepository;
use Vanguard\Repositories\User\UserRepository;
use Vanguard\Support\Enum\UserStatus;
class SocialManager
{
use ManagesSocialAvatarSize;
public function __construct(private UserRepository $users, private RoleRepository $roles)
{
}
/**
* Associate social user with given provider. If user with the same email address
* retrieved from social network exists in our database, we will just associate it
* with provided social account. If not, user will be created.
*
* @param SocialUser $socialUser
* @param string $provider
* @return mixed|null|\Vanguard\User
*/
public function associate(SocialUser $socialUser, $provider)
{
$user = $this->users->findByEmail($socialUser->getEmail());
if (! $user) {
// User with email retrieved from social auth provider does not
// exist in our database. That means that we have to create new user here
list($firstName, $lastName) = $this->parseUserFullName($socialUser);
$role = $this->roles->findByName('User');
$user = $this->users->create([
'email' => $socialUser->getEmail(),
'password' => Str::random(10),
'first_name' => $firstName,
'last_name' => $lastName,
'status' => UserStatus::ACTIVE,
'avatar' => $this->getAvatarForProvider($provider, $socialUser),
'role_id' => $role->id,
'email_verified_at' => now()
]);
}
// Associate social account with user account inside our application
$this->users->associateSocialAccountForUser($user->id, $provider, $socialUser);
return $user;
}
/**
* Parse User's name from his social network account.
*
* @param SocialUser $user
* @return array
*/
private function parseUserFullName(SocialUser $user)
{
$name = $user->getName();
if (str_contains($name, " ")) {
return explode(" ", $name, 2);
}
return [$name, ''];
}
}