Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101443753
PhabricatorUserPreferences.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 10, 13:09
Size
6 KB
Mime Type
text/x-php
Expires
Wed, Feb 12, 13:09 (2 d)
Engine
blob
Format
Raw Data
Handle
24165672
Attached To
rPH Phabricator
PhabricatorUserPreferences.php
View Options
<?php
final
class
PhabricatorUserPreferences
extends
PhabricatorUserDAO
implements
PhabricatorPolicyInterface
,
PhabricatorDestructibleInterface
,
PhabricatorApplicationTransactionInterface
{
const
PREFERENCE_MONOSPACED
=
'monospaced'
;
const
PREFERENCE_DARK_CONSOLE
=
'dark_console'
;
const
PREFERENCE_EDITOR
=
'editor'
;
const
PREFERENCE_MULTIEDIT
=
'multiedit'
;
const
PREFERENCE_TITLES
=
'titles'
;
const
PREFERENCE_MONOSPACED_TEXTAREAS
=
'monospaced-textareas'
;
const
PREFERENCE_DATE_FORMAT
=
'date-format'
;
const
PREFERENCE_TIME_FORMAT
=
'time-format'
;
const
PREFERENCE_WEEK_START_DAY
=
'week-start-day'
;
const
PREFERENCE_RE_PREFIX
=
're-prefix'
;
const
PREFERENCE_NO_SELF_MAIL
=
'self-mail'
;
const
PREFERENCE_NO_MAIL
=
'no-mail'
;
const
PREFERENCE_MAILTAGS
=
'mailtags'
;
const
PREFERENCE_VARY_SUBJECT
=
'vary-subject'
;
const
PREFERENCE_HTML_EMAILS
=
'html-emails'
;
const
PREFERENCE_SEARCH_SCOPE
=
'search-scope'
;
const
PREFERENCE_DIFFUSION_BLAME
=
'diffusion-blame'
;
const
PREFERENCE_DIFFUSION_COLOR
=
'diffusion-color'
;
const
PREFERENCE_NAV_COLLAPSED
=
'nav-collapsed'
;
const
PREFERENCE_NAV_WIDTH
=
'nav-width'
;
const
PREFERENCE_APP_TILES
=
'app-tiles'
;
const
PREFERENCE_APP_PINNED
=
'app-pinned'
;
const
PREFERENCE_DIFF_UNIFIED
=
'diff-unified'
;
const
PREFERENCE_DIFF_FILETREE
=
'diff-filetree'
;
const
PREFERENCE_DIFF_GHOSTS
=
'diff-ghosts'
;
const
PREFERENCE_CONPH_NOTIFICATIONS
=
'conph-notifications'
;
const
PREFERENCE_CONPHERENCE_COLUMN
=
'conpherence-column'
;
const
PREFERENCE_RESOURCE_POSTPROCESSOR
=
'resource-postprocessor'
;
const
PREFERENCE_DESKTOP_NOTIFICATIONS
=
'desktop-notifications'
;
const
PREFERENCE_PROFILE_MENU_COLLAPSED
=
'profile-menu.collapsed'
;
const
PREFERENCE_FAVORITE_POLICIES
=
'policy.favorites'
;
const
PREFERENCE_IGNORE_OFFSET
=
'time.offset.ignore'
;
// These are in an unusual order for historic reasons.
const
MAILTAG_PREFERENCE_NOTIFY
=
0
;
const
MAILTAG_PREFERENCE_EMAIL
=
1
;
const
MAILTAG_PREFERENCE_IGNORE
=
2
;
protected
$userPHID
;
protected
$preferences
=
array
();
private
$user
=
self
::
ATTACHABLE
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'preferences'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'userPHID'
=>
array
(
'columns'
=>
array
(
'userPHID'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
PhabricatorUserPreferencesPHIDType
::
TYPECONST
);
}
public
function
getPreference
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
preferences
,
$key
,
$default
);
}
public
function
setPreference
(
$key
,
$value
)
{
$this
->
preferences
[
$key
]
=
$value
;
return
$this
;
}
public
function
unsetPreference
(
$key
)
{
unset
(
$this
->
preferences
[
$key
]);
return
$this
;
}
public
function
getDefaultValue
(
$key
)
{
$setting
=
self
::
getSettingObject
(
$key
);
if
(!
$setting
)
{
return
null
;
}
return
$setting
->
getSettingDefaultValue
();
}
private
static
function
getSettingObject
(
$key
)
{
$settings
=
PhabricatorSetting
::
getAllSettings
();
return
idx
(
$settings
,
$key
);
}
public
function
getPinnedApplications
(
array
$apps
,
PhabricatorUser
$viewer
)
{
$pref_pinned
=
self
::
PREFERENCE_APP_PINNED
;
$pinned
=
$this
->
getPreference
(
$pref_pinned
);
if
(
$pinned
)
{
return
$pinned
;
}
$pref_tiles
=
self
::
PREFERENCE_APP_TILES
;
$tiles
=
$this
->
getPreference
(
$pref_tiles
,
array
());
$full_tile
=
'full'
;
$large
=
array
();
foreach
(
$apps
as
$app
)
{
$show
=
$app
->
isPinnedByDefault
(
$viewer
);
// TODO: This is legacy stuff, clean it up eventually. This approximately
// retains the old "tiles" preference.
if
(
isset
(
$tiles
[
get_class
(
$app
)]))
{
$show
=
(
$tiles
[
get_class
(
$app
)]
==
$full_tile
);
}
if
(
$show
)
{
$large
[]
=
get_class
(
$app
);
}
}
return
$large
;
}
public
static
function
filterMonospacedCSSRule
(
$monospaced
)
{
// Prevent the user from doing dangerous things.
return
preg_replace
(
'([^a-z0-9 ,"./]+)i'
,
''
,
$monospaced
);
}
public
function
attachUser
(
PhabricatorUser
$user
=
null
)
{
$this
->
user
=
$user
;
return
$this
;
}
public
function
getUser
()
{
return
$this
->
assertAttached
(
$this
->
user
);
}
public
function
hasManagedUser
()
{
$user_phid
=
$this
->
getUserPHID
();
if
(!
$user_phid
)
{
return
false
;
}
$user
=
$this
->
getUser
();
if
(
$user
->
getIsSystemAgent
()
||
$user
->
getIsMailingList
())
{
return
true
;
}
return
false
;
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
public
function
getPolicy
(
$capability
)
{
switch
(
$capability
)
{
case
PhabricatorPolicyCapability
::
CAN_VIEW
:
$user_phid
=
$this
->
getUserPHID
();
if
(
$user_phid
)
{
return
$user_phid
;
}
return
PhabricatorPolicies
::
getMostOpenPolicy
();
case
PhabricatorPolicyCapability
::
CAN_EDIT
:
if
(
$this
->
hasManagedUser
())
{
return
PhabricatorPolicies
::
POLICY_ADMIN
;
}
$user_phid
=
$this
->
getUserPHID
();
if
(
$user_phid
)
{
return
$user_phid
;
}
return
PhabricatorPolicies
::
POLICY_ADMIN
;
}
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
if
(
$this
->
hasManagedUser
())
{
if
(
$viewer
->
getIsAdmin
())
{
return
true
;
}
}
return
false
;
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
null
;
}
/* -( PhabricatorDestructibleInterface )----------------------------------- */
public
function
destroyObjectPermanently
(
PhabricatorDestructionEngine
$engine
)
{
$this
->
delete
();
}
/* -( PhabricatorApplicationTransactionInterface )------------------------- */
public
function
getApplicationTransactionEditor
()
{
return
new
PhabricatorUserPreferencesEditor
();
}
public
function
getApplicationTransactionObject
()
{
return
$this
;
}
public
function
getApplicationTransactionTemplate
()
{
return
new
PhabricatorUserPreferencesTransaction
();
}
public
function
willRenderTimeline
(
PhabricatorApplicationTransactionView
$timeline
,
AphrontRequest
$request
)
{
return
$timeline
;
}
}
Event Timeline
Log In to Comment