uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
craftcms
/
cms
/
src
/
controllers
/
SitesController.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\controllers; use Craft; use craft\helpers\Cp; use craft\helpers\Json; use craft\helpers\StringHelper; use craft\helpers\UrlHelper; use craft\models\Site; use craft\models\SiteGroup; use craft\web\assets\sites\SitesAsset; use craft\web\Controller; use yii\web\BadRequestHttpException; use yii\web\NotFoundHttpException; use yii\web\Response; use yii\web\ServerErrorHttpException; /** * The SitesController class is a controller that handles various actions related to categories and category * groups, such as creating, editing and deleting them. * Note that all actions in the controller require an authenticated Craft session via [[allowAnonymous]]. * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 3.0.0 */ class SitesController extends Controller { /** * @inheritdoc */ public function beforeAction($action): bool { if (!parent::beforeAction($action)) { return false; } // All actions require an admin account $this->requireAdmin(); return true; } /** * Site settings index. * * @param int|null $groupId * @return Response * @throws NotFoundHttpException if $groupId is invalid */ public function actionSettingsIndex(?int $groupId = null): Response { $sitesService = Craft::$app->getSites(); $allGroups = $sitesService->getAllGroups(); if ($groupId) { if (($group = $sitesService->getGroupById($groupId)) === null) { throw new NotFoundHttpException('Invalid site group ID: ' . $groupId); } $sites = $sitesService->getSitesByGroupId($groupId); } else { $group = null; $sites = $sitesService->getAllSites(); } $crumbs = [ ['label' => Craft::t('app', 'Settings'), 'url' => UrlHelper::cpUrl('settings')], ]; $view = $this->getView(); $view->registerAssetBundle(SitesAsset::class); $view->registerTranslations('app', [ 'Could not create the group:', 'Group renamed.', 'Could not rename the group:', 'What do you want to name the group?', 'Are you sure you want to delete this group?', 'What do you want to do with any content that is only available in {language}?', 'Transfer it to:', 'Delete it', 'Delete {site}', ]); return $this->renderTemplate('settings/sites/index.twig', compact( 'crumbs', 'allGroups', 'group', 'sites' )); } // Groups // ------------------------------------------------------------------------- /** * Returns the HTML and JS for a rename-site-group modal. * * @return Response * @since 3.7.0 */ public function actionRenameGroupField(): Response { $this->requirePostRequest(); $this->requireAcceptsJson(); $view = Craft::$app->getView(); $view->startJsBuffer(); $html = $view->namespaceInputs(function() { return Cp::autosuggestFieldHtml([ 'label' => Craft::t('app', 'Group Name'), 'instructions' => Craft::t('app', 'What this group will be called in the control panel.'), 'id' => 'name', 'name' => 'name', 'value' => $this->request->getBodyParam('name') ?? '', 'suggestEnvVars' => true, 'required' => true, ]); }, 'name' . StringHelper::randomString(10)); $js = $view->clearJsBuffer(); return $this->asJson(compact('html', 'js')); } /** * Saves a site group. * * @return Response * @throws BadRequestHttpException */ public function actionSaveGroup(): Response { $this->requirePostRequest(); $this->requireAcceptsJson(); $sitesService = Craft::$app->getSites(); $groupId = $this->request->getBodyParam('id'); if ($groupId) { $group = $sitesService->getGroupById($groupId); if (!$group) { throw new BadRequestHttpException("Invalid site group ID: $groupId"); } } else { $group = new SiteGroup(); } $group->setName($this->request->getRequiredBodyParam('name')); if (!Craft::$app->getSites()->saveGroup($group)) { return $this->asFailure(data: [ 'errors' => $group->getFirstErrors(), ]); } $attr = $group->getAttributes(); $attr['name'] = Craft::t('site', $attr['name']); return $this->asSuccess(data: [ 'group' => $attr, ]); } /** * Deletes a site group. * * @return Response */ public function actionDeleteGroup(): Response { $this->requirePostRequest(); $this->requireAcceptsJson(); $groupId = $this->request->getRequiredBodyParam('id'); if (!Craft::$app->getSites()->deleteGroupById($groupId)) { return $this->asFailure(); } return $this->asSuccess(Craft::t('app', 'Group deleted.')); } // Sites // ------------------------------------------------------------------------- /** * Edit a category group. * * @param int|null $siteId The site’s ID, if editing an existing site * @param Site|null $siteModel The site being edited, if there were any validation errors * @param int|null $groupId The default group ID that the site should be saved in * @return Response * @throws NotFoundHttpException if the requested site cannot be found * @throws ServerErrorHttpException if no site groups exist */ public function actionEditSite(?int $siteId = null, ?Site $siteModel = null, ?int $groupId = null): Response { $sitesService = Craft::$app->getSites(); $brandNewSite = false; if ($siteId !== null) { if ($siteModel === null) { $siteModel = $sitesService->getSiteById($siteId); if (!$siteModel) { throw new NotFoundHttpException('Site not found'); } } $title = trim($siteModel->getName()) ?: Craft::t('app', 'Edit Site'); } else { if ($siteModel === null) { $siteModel = new Site(); $siteModel->language = $sitesService->getPrimarySite()->language; $brandNewSite = true; } $title = Craft::t('app', 'Create a new site'); } // Groups // --------------------------------------------------------------------- $allGroups = $sitesService->getAllGroups(); if (empty($allGroups)) { throw new ServerErrorHttpException('No site groups exist'); } if ($groupId === null) { $groupId = $siteModel->groupId ?? $allGroups[0]->id; } $siteGroup = $sitesService->getGroupById($groupId); if ($siteGroup === null) { throw new NotFoundHttpException('Site group not found'); } $groupOptions = []; foreach ($allGroups as $group) { $groupOptions[] = [ 'value' => $group->id, 'label' => Craft::t('site', $group->getName()), ]; } // Page setup + render // --------------------------------------------------------------------- // Breadcrumbs $crumbs = [ [ 'label' => Craft::t('app', 'Settings'), 'url' => UrlHelper::url('settings'), ], [ 'label' => Craft::t('app', 'Sites'), 'url' => UrlHelper::url('settings/sites'), ], ]; $languageOptions = []; $languageId = Craft::$app->getLocale()->getLanguageID(); foreach (Craft::$app->getI18n()->getAllLocales() as $locale) { $languageOptions[] = [ 'label' => $locale->getDisplayName(Craft::$app->language), 'value' => $locale->id, 'data' => [ 'data' => [ 'hint' => $locale->id, 'keywords' => $locale->getLanguageID() !== $languageId ? $locale->getDisplayName() : false, ], ], ]; } return $this->renderTemplate('settings/sites/_edit.twig', [ 'brandNewSite' => $brandNewSite, 'title' => $title, 'crumbs' => $crumbs, 'site' => $siteModel, 'groupId' => $groupId, 'groupOptions' => $groupOptions, 'languageOptions' => $languageOptions, ]); } /** * Saves a site. * * @return Response|null * @throws BadRequestHttpException */ public function actionSaveSite(): ?Response { $this->requirePostRequest(); $sitesService = Craft::$app->getSites(); $siteId = $this->request->getBodyParam('siteId'); if ($siteId) { $site = $sitesService->getSiteById($siteId); if (!$site) { throw new BadRequestHttpException("Invalid site ID: $siteId"); } } else { $site = new Site(); $site->id = $this->request->getBodyParam('siteId'); } $site->groupId = $this->request->getBodyParam('group'); $site->setName($this->request->getBodyParam('name')); $site->handle = $this->request->getBodyParam('handle'); $site->language = $this->request->getBodyParam('language'); $site->primary = (bool)$this->request->getBodyParam('primary'); $site->setEnabled($site->primary ? true : $this->request->getBodyParam('enabled', true)); $site->hasUrls = (bool)$this->request->getBodyParam('hasUrls'); $site->setBaseUrl($site->hasUrls ? $this->request->getBodyParam('baseUrl') : null); // Save it if (!$sitesService->saveSite($site)) { $this->setFailFlash(Craft::t('app', 'Couldn’t save the site.')); // Send the site back to the template Craft::$app->getUrlManager()->setRouteParams([ 'siteModel' => $site, ]); return null; } $this->setSuccessFlash(Craft::t('app', 'Site saved.')); return $this->redirectToPostedUrl($site); } /** * Reorders sites. * * @return Response */ public function actionReorderSites(): Response { $this->requirePostRequest(); $this->requireAcceptsJson(); /** @var int[] $siteIds */ $siteIds = Json::decode($this->request->getRequiredBodyParam('ids')); Craft::$app->getSites()->reorderSites($siteIds); return $this->asSuccess(); } /** * Deletes a site. * * @return Response */ public function actionDeleteSite(): Response { $this->requirePostRequest(); $this->requireAcceptsJson(); $siteId = $this->request->getRequiredBodyParam('id'); $transferContentTo = $this->request->getBodyParam('transferContentTo'); Craft::$app->getSites()->deleteSiteById($siteId, $transferContentTo); return $this->asSuccess(); } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/craftcms/cms/src/controllers/SitesController.php