看板初始化提交

This commit is contained in:
zephyr
2026-06-01 21:23:12 -07:00
commit 54a842f4ab
2104 changed files with 241695 additions and 0 deletions
+119
View File
@@ -0,0 +1,119 @@
<?php
namespace Kanboard\Controller;
use Kanboard\Core\Controller\PageNotFoundException;
use Kanboard\Core\Security\Role;
use Kanboard\Notification\MailNotification;
use Kanboard\Notification\WebNotification;
/**
* Class UserInviteController
*
* @package Kanboard\Controller
* @author Frederic Guillot
*/
class UserInviteController extends BaseController
{
public function show(array $values = array(), array $errors = array())
{
$this->response->html($this->template->render('user_invite/show', array(
'projects' => $this->projectModel->getList(),
'errors' => $errors,
'values' => $values,
)));
}
public function save()
{
$values = $this->request->getValues();
if (! empty($values['emails']) && isset($values['project_id'])) {
$emails = explode("\r\n", trim($values['emails']));
$nb = $this->inviteModel->createInvites($emails, $values['project_id']);
$this->flash->success($nb > 1 ? t('%d invitations were sent.', $nb) : t('%d invitation was sent.', $nb));
}
$this->response->redirect($this->helper->url->to('UserListController', 'show'));
}
public function signup(array $values = array(), array $errors = array())
{
$invite = $this->getInvite();
$this->response->html($this->helper->layout->app('user_invite/signup', array(
'no_layout' => true,
'not_editable' => true,
'token' => $invite['token'],
'errors' => $errors,
'values' => $values + array('email' => $invite['email']),
'themes' => $this->themeModel->getThemes(),
'timezones' => $this->timezoneModel->getTimezones(true),
'languages' => $this->languageModel->getLanguages(true),
)));
}
public function register()
{
$invite = $this->getInvite();
$input = $this->request->getValues();
$values = array();
foreach (['username', 'name', 'email', 'password', 'confirmation', 'timezone', 'language', 'notifications_enabled'] as $field) {
if (array_key_exists($field, $input)) {
$values[$field] = $input[$field];
}
}
list($valid, $errors) = $this->userValidator->validateCreation($values);
if ($valid) {
$this->createUser($invite, $values);
} else {
$this->signup($values, $errors);
}
}
protected function getInvite()
{
$token = $this->request->getStringParam('token');
if (empty($token)) {
throw PageNotFoundException::getInstance()->withoutLayout();
}
$invite = $this->inviteModel->getByToken($token);
if (empty($invite)) {
throw PageNotFoundException::getInstance()->withoutLayout();
}
return $invite;
}
protected function createUser(array $invite, array $values)
{
$user_id = $this->userModel->create($values);
if ($user_id !== false) {
if ($invite['project_id'] != 0) {
$this->projectUserRoleModel->addUser($invite['project_id'], $user_id, Role::PROJECT_MEMBER);
}
if ($this->configModel->get('notifications_enabled', 0) == 1) {
$this->userNotificationTypeModel->saveSelectedTypes($user_id, [MailNotification::TYPE, WebNotification::TYPE]);
} elseif (! empty($values['notifications_enabled'])) {
$this->userNotificationTypeModel->saveSelectedTypes($user_id, [MailNotification::TYPE]);
}
$this->inviteModel->remove($invite['email']);
$this->flash->success(t('User created successfully.'));
$this->response->redirect($this->helper->url->to('AuthController', 'login'));
} else {
$this->flash->failure(t('Unable to create this user.'));
$this->response->redirect($this->helper->url->to('UserInviteController', 'signup'));
}
}
}