-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3039 from nextcloud/enh/send-all-invitations
send all invitations
- Loading branch information
Showing
20 changed files
with
352 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
/** | ||
* @copyright Copyright (c) 2021 René Gieling <github@dartcafe.de> | ||
* | ||
* @author René Gieling <github@dartcafe.de> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OCA\Polls\Model; | ||
|
||
class SentResult implements \JsonSerializable { | ||
public const INVALID_EMAIL_ADDRESS = 'InvalidMail'; | ||
public const UNHANDELED_REASON = 'UnknownError'; | ||
|
||
private array $sentMails = []; | ||
private array $abortedMails = []; | ||
|
||
public function AddSentMail(UserBase $user): void { | ||
array_push($this->sentMails, [ | ||
'emailAddress' => $user->getEmailAddress(), | ||
'displayName' => $user->getDisplayName(), | ||
]); | ||
} | ||
|
||
public function AddAbortedMail(UserBase $user, string $reason = self::UNHANDELED_REASON): void { | ||
array_push($this->abortedMails, [ | ||
'emailAddress' => $user->getEmailAddress(), | ||
'displayName' => $user->getDisplayName(), | ||
'reason' => $reason, | ||
]); | ||
} | ||
|
||
public function jsonSerialize(): array { | ||
return [ | ||
'sentMails' => $this->sentMails, | ||
'abortedMails' => $this->abortedMails, | ||
'countSentMails' => count($this->sentMails), | ||
'countAbortedMails' => count($this->abortedMails), | ||
]; | ||
} | ||
} |
Oops, something went wrong.