Page MenuHomePhabricator

D16118.diff
No OneTemporary

D16118.diff

diff --git a/src/applications/feed/PhabricatorFeedStoryPublisher.php b/src/applications/feed/PhabricatorFeedStoryPublisher.php
--- a/src/applications/feed/PhabricatorFeedStoryPublisher.php
+++ b/src/applications/feed/PhabricatorFeedStoryPublisher.php
@@ -215,6 +215,7 @@
$all_prefs = id(new PhabricatorUserPreferencesQuery())
->setViewer(PhabricatorUser::getOmnipotentUser())
->withUserPHIDs($phids)
+ ->needSyntheticPreferences(true)
->execute();
$all_prefs = mpull($all_prefs, null, 'getUserPHID');
}
diff --git a/src/applications/metamta/storage/PhabricatorMetaMTAMail.php b/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
--- a/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
+++ b/src/applications/metamta/storage/PhabricatorMetaMTAMail.php
@@ -877,6 +877,7 @@
$all_prefs = id(new PhabricatorUserPreferencesQuery())
->setViewer(PhabricatorUser::getOmnipotentUser())
->withUserPHIDs($actor_phids)
+ ->needSyntheticPreferences(true)
->execute();
$all_prefs = mpull($all_prefs, null, 'getUserPHID');
@@ -1105,29 +1106,20 @@
private function loadPreferences($target_phid) {
- if (!self::shouldMultiplexAllMail()) {
- $target_phid = null;
- }
+ $viewer = PhabricatorUser::getOmnipotentUser();
- if ($target_phid) {
+ if (self::shouldMultiplexAllMail()) {
$preferences = id(new PhabricatorUserPreferencesQuery())
- ->setViewer(PhabricatorUser::getOmnipotentUser())
+ ->setViewer($viewer)
->withUserPHIDs(array($target_phid))
+ ->needSyntheticPreferences(true)
->executeOne();
- } else {
- $preferences = null;
- }
-
- // TODO: Here, we would load global preferences once they exist.
-
- if (!$preferences) {
- // If we haven't found suitable preferences yet, return an empty object
- // which implicitly has all the default values.
- $preferences = id(new PhabricatorUserPreferences())
- ->attachUser(new PhabricatorUser());
+ if ($preferences) {
+ return $preferences;
+ }
}
- return $preferences;
+ return PhabricatorUserPreferences::loadGlobalPreferences($viewer);
}
private function shouldAddRePrefix(PhabricatorUserPreferences $preferences) {
diff --git a/src/applications/people/cache/PhabricatorUserPreferencesCacheType.php b/src/applications/people/cache/PhabricatorUserPreferencesCacheType.php
--- a/src/applications/people/cache/PhabricatorUserPreferencesCacheType.php
+++ b/src/applications/people/cache/PhabricatorUserPreferencesCacheType.php
@@ -29,29 +29,16 @@
$preferences = id(new PhabricatorUserPreferencesQuery())
->setViewer($viewer)
- ->withUserPHIDs($user_phids)
+ ->withUsers($users)
+ ->needSyntheticPreferences(true)
->execute();
$preferences = mpull($preferences, null, 'getUserPHID');
- // If some users don't have settings of their own yet, we need to load
- // the global default settings to generate caches for them.
- if (count($preferences) < count($user_phids)) {
- $global = id(new PhabricatorUserPreferencesQuery())
- ->setViewer($viewer)
- ->withBuiltinKeys(
- array(
- PhabricatorUserPreferences::BUILTIN_GLOBAL_DEFAULT,
- ))
- ->executeOne();
- } else {
- $global = null;
- }
-
$all_settings = PhabricatorSetting::getAllSettings();
$settings = array();
foreach ($users as $user_phid => $user) {
- $preference = idx($preferences, $user_phid, $global);
+ $preference = idx($preferences, $user_phid);
if (!$preference) {
continue;
diff --git a/src/applications/settings/controller/PhabricatorSettingsMainController.php b/src/applications/settings/controller/PhabricatorSettingsMainController.php
--- a/src/applications/settings/controller/PhabricatorSettingsMainController.php
+++ b/src/applications/settings/controller/PhabricatorSettingsMainController.php
@@ -152,6 +152,10 @@
if (!$this->isSelf() && !$panel->isManagementPanel()) {
continue;
}
+
+ if ($this->isSelf() && !$panel->isUserPanel()) {
+ continue;
+ }
}
if (!empty($result[$key])) {
diff --git a/src/applications/settings/panel/PhabricatorEmailFormatSettingsPanel.php b/src/applications/settings/panel/PhabricatorEmailFormatSettingsPanel.php
--- a/src/applications/settings/panel/PhabricatorEmailFormatSettingsPanel.php
+++ b/src/applications/settings/panel/PhabricatorEmailFormatSettingsPanel.php
@@ -13,7 +13,15 @@
return PhabricatorSettingsEmailPanelGroup::PANELGROUPKEY;
}
+ public function isUserPanel() {
+ return PhabricatorMetaMTAMail::shouldMultiplexAllMail();
+ }
+
public function isManagementPanel() {
+ if (!$this->isUserPanel()) {
+ return false;
+ }
+
if ($this->getUser()->getIsMailingList()) {
return true;
}
diff --git a/src/applications/settings/panel/PhabricatorSettingsPanel.php b/src/applications/settings/panel/PhabricatorSettingsPanel.php
--- a/src/applications/settings/panel/PhabricatorSettingsPanel.php
+++ b/src/applications/settings/panel/PhabricatorSettingsPanel.php
@@ -155,6 +155,18 @@
/**
+ * Return true if this panel is available to users while editing their own
+ * settings.
+ *
+ * @return bool True to enable management on behalf of a user.
+ * @task config
+ */
+ public function isUserPanel() {
+ return true;
+ }
+
+
+ /**
* Return true if this panel is available to administrators while managing
* bot and mailing list accounts.
*
diff --git a/src/applications/settings/query/PhabricatorUserPreferencesQuery.php b/src/applications/settings/query/PhabricatorUserPreferencesQuery.php
--- a/src/applications/settings/query/PhabricatorUserPreferencesQuery.php
+++ b/src/applications/settings/query/PhabricatorUserPreferencesQuery.php
@@ -9,6 +9,7 @@
private $builtinKeys;
private $hasUserPHID;
private $users = array();
+ private $synthetic;
public function withIDs(array $ids) {
$this->ids = $ids;
@@ -42,12 +43,38 @@
return $this;
}
+ /**
+ * Always return preferences for every queried user.
+ *
+ * If no settings exist for a user, a new empty settings object with
+ * appropriate defaults is returned.
+ *
+ * @param bool True to generat synthetic preferences for missing users.
+ */
+ public function needSyntheticPreferences($synthetic) {
+ $this->synthetic = $synthetic;
+ return $this;
+ }
+
public function newResultObject() {
return new PhabricatorUserPreferences();
}
protected function loadPage() {
- return $this->loadStandardPage($this->newResultObject());
+ $preferences = $this->loadStandardPage($this->newResultObject());
+
+ if ($this->synthetic) {
+ $user_map = mpull($preferences, null, 'getUserPHID');
+ foreach ($this->userPHIDs as $user_phid) {
+ if (isset($user_map[$user_phid])) {
+ continue;
+ }
+ $preferences[] = $this->newResultObject()
+ ->setUserPHID($user_phid);
+ }
+ }
+
+ return $preferences;
}
protected function willFilterPage(array $prefs) {
diff --git a/src/applications/settings/setting/PhabricatorEmailFormatSetting.php b/src/applications/settings/setting/PhabricatorEmailFormatSetting.php
--- a/src/applications/settings/setting/PhabricatorEmailFormatSetting.php
+++ b/src/applications/settings/setting/PhabricatorEmailFormatSetting.php
@@ -20,10 +20,6 @@
return 100;
}
- protected function isEnabledForViewer(PhabricatorUser $viewer) {
- return PhabricatorMetaMTAMail::shouldMultiplexAllMail();
- }
-
protected function getControlInstructions() {
return pht(
'You can opt to receive plain text email from Phabricator instead '.
diff --git a/src/applications/settings/setting/PhabricatorEmailRePrefixSetting.php b/src/applications/settings/setting/PhabricatorEmailRePrefixSetting.php
--- a/src/applications/settings/setting/PhabricatorEmailRePrefixSetting.php
+++ b/src/applications/settings/setting/PhabricatorEmailRePrefixSetting.php
@@ -20,10 +20,6 @@
return 200;
}
- protected function isEnabledForViewer(PhabricatorUser $viewer) {
- return PhabricatorMetaMTAMail::shouldMultiplexAllMail();
- }
-
protected function getControlInstructions() {
return pht(
'The **Add "Re:" Prefix** setting adds "Re:" in front of all messages, '.
diff --git a/src/applications/settings/setting/PhabricatorEmailVarySubjectsSetting.php b/src/applications/settings/setting/PhabricatorEmailVarySubjectsSetting.php
--- a/src/applications/settings/setting/PhabricatorEmailVarySubjectsSetting.php
+++ b/src/applications/settings/setting/PhabricatorEmailVarySubjectsSetting.php
@@ -20,10 +20,6 @@
return 300;
}
- protected function isEnabledForViewer(PhabricatorUser $viewer) {
- return PhabricatorMetaMTAMail::shouldMultiplexAllMail();
- }
-
protected function getControlInstructions() {
return pht(
'With **Vary Subjects** enabled, most mail subject lines will include '.
diff --git a/src/applications/settings/storage/PhabricatorUserPreferences.php b/src/applications/settings/storage/PhabricatorUserPreferences.php
--- a/src/applications/settings/storage/PhabricatorUserPreferences.php
+++ b/src/applications/settings/storage/PhabricatorUserPreferences.php
@@ -122,31 +122,35 @@
* @param PhabricatorUser User to load or create preferences for.
*/
public static function loadUserPreferences(PhabricatorUser $user) {
- $preferences = id(new PhabricatorUserPreferencesQuery())
+ return id(new PhabricatorUserPreferencesQuery())
->setViewer($user)
->withUsers(array($user))
+ ->needSyntheticPreferences(true)
->executeOne();
- if ($preferences) {
- return $preferences;
- }
-
- $preferences = id(new self())
- ->setUserPHID($user->getPHID())
- ->attachUser($user);
+ }
+ /**
+ * Load or create a global preferences object.
+ *
+ * If no global preferences exist, an empty preferences object is returned.
+ *
+ * @param PhabricatorUser Viewing user.
+ */
+ public static function loadGlobalPreferences(PhabricatorUser $viewer) {
$global = id(new PhabricatorUserPreferencesQuery())
- ->setViewer($user)
+ ->setViewer($viewer)
->withBuiltinKeys(
array(
self::BUILTIN_GLOBAL_DEFAULT,
))
->executeOne();
- if ($global) {
- $preferences->attachDefaultSettings($global);
+ if (!$global) {
+ $global = id(new self())
+ ->attachUser(new PhabricatorUser());
}
- return $preferences;
+ return $global;
}
public function newTransaction($key, $value) {

File Metadata

Mime Type
text/plain
Expires
Mon, Mar 24, 8:09 PM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7227953
Default Alt Text
D16118.diff (10 KB)

Event Timeline