Skip to content
This repository was archived by the owner on Jul 2, 2022. It is now read-only.

Commit 93b0c63

Browse files
committed
UserName VO fix no. 2 (revert "fix") & check guild before creating entity
1 parent 509ccfc commit 93b0c63

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

src/Provider/Discord.php

+12-10
Original file line numberDiff line numberDiff line change
@@ -140,16 +140,18 @@ protected function createResourceOwner(array $response, AccessToken $token)
140140
);
141141

142142
foreach ($guilds as $key => $guild) {
143-
$_guild = new Guild();
144-
145-
$_guild
146-
->setId($guild['id'])
147-
->setName(new GuildName($guild['name']))
148-
->setIcon($guild['icon'])
149-
->setOwner($guild['owner'])
150-
->setPermissions($guild['permissions']);
151-
152-
$user->addGuild($_guild);
143+
if($guild['id'] !== null){
144+
$_guild = new Guild();
145+
146+
$_guild
147+
->setId($guild['id'])
148+
->setName(new GuildName($guild['name']))
149+
->setIcon($guild['icon'])
150+
->setOwner($guild['owner'])
151+
->setPermissions($guild['permissions']);
152+
153+
$user->addGuild($_guild);
154+
}
153155
}
154156

155157
return $user;

src/Provider/ValueObject/UserName.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ private function guardUserName($user_name)
5050

5151
$name_length = strlen($user_name);
5252

53-
if ($name_length >= self::MAX_LENGTH) {
53+
if ($name_length > self::MAX_LENGTH) {
5454
throw new InvalidUserNameException("Username must have less than " . self::MAX_LENGTH . " characters");
5555
}
5656

57-
if ($name_length <= self::MIN_LENGTH) {
57+
if ($name_length < self::MIN_LENGTH) {
5858
throw new InvalidUserNameException("Username must have more than " . self::MIN_LENGTH . " characters");
5959
}
6060
}

0 commit comments

Comments
 (0)