From 8f3e62ac9365880ef7688504065a6e472505e344 Mon Sep 17 00:00:00 2001 From: emkael Date: Fri, 6 May 2016 17:13:32 +0200 Subject: * cloning default calendar preference for new users --- app/php/events/CalendarPreferenceEvents.php | 16 ++++++++++++++++ app/php/facades/UserFacade.php | 20 ++++++++++++++------ 2 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 app/php/events/CalendarPreferenceEvents.php (limited to 'app/php') diff --git a/app/php/events/CalendarPreferenceEvents.php b/app/php/events/CalendarPreferenceEvents.php new file mode 100644 index 0000000..76fa071 --- /dev/null +++ b/app/php/events/CalendarPreferenceEvents.php @@ -0,0 +1,16 @@ +setPreferredCalendars($user, $facade->getDefaultPreference()); + } + +} + +?> diff --git a/app/php/facades/UserFacade.php b/app/php/facades/UserFacade.php index 3e32a8d..69d634a 100644 --- a/app/php/facades/UserFacade.php +++ b/app/php/facades/UserFacade.php @@ -16,12 +16,20 @@ class UserFacade extends Facade { } public function registerUser($login, $password, $admin) { - $newUser = new User(); - $newUser->Login = $login; - $newUser->Password = $this->generatePassword($password); - $newUser->IsAdmin = $admin; - $newUser->save(); - return $newUser; + $transaction = $this->beginTransaction(); + try { + $newUser = new User(); + $newUser->Login = $login; + $newUser->Password = $this->generatePassword($password); + $newUser->IsAdmin = $admin; + $newUser->save(); + $this->raiseEvent('UserRegistered', $newUser); + $transaction->commit(); + return $newUser; + } catch (Exception $e) { + $transaction->rollback(); + throw $e; + } } public function changePassword(DbUser $user, $pass) { -- cgit v1.2.3