Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295262
PhabricatorGuideInstallModule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
5 KB
Referenced Files
None
Subscribers
None
PhabricatorGuideInstallModule.php
View Options
<?php
final
class
PhabricatorGuideInstallModule
extends
PhabricatorGuideModule
{
public
function
getModuleKey
(
)
{
return
'install'
;
}
public
function
getModuleName
(
)
{
return
pht
(
'Install'
)
;
}
public
function
getModulePosition
(
)
{
return
20
;
}
public
function
getIsModuleEnabled
(
)
{
if
(
PhabricatorEnv
::
getEnvConfig
(
'cluster.instance'
)
)
{
return
false
;
}
return
true
;
}
public
function
renderModuleStatus
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
(
)
;
$guide_items
=
new
PhabricatorGuideListView
(
)
;
$title
=
pht
(
'Resolve Setup Issues'
)
;
$issues_resolved
=
!
PhabricatorSetupCheck
::
getOpenSetupIssueKeys
(
)
;
$href
=
PhabricatorEnv
::
getURI
(
'/config/issue/'
)
;
if
(
$issues_resolved
)
{
$icon
=
'fa-check'
;
$icon_bg
=
'bg-green'
;
$description
=
pht
(
"You've resolved (or ignored) all outstanding setup issues."
)
;
}
else
{
$icon
=
'fa-warning'
;
$icon_bg
=
'bg-red'
;
$description
=
pht
(
'You have some unresolved setup issues to take care of.'
)
;
}
$item
=
id
(
new
PhabricatorGuideItemView
(
)
)
->
setTitle
(
$title
)
->
setHref
(
$href
)
->
setIcon
(
$icon
)
->
setIconBackground
(
$icon_bg
)
->
setDescription
(
$description
)
;
$guide_items
->
addItem
(
$item
)
;
$configs
=
id
(
new
PhabricatorAuthProviderConfigQuery
(
)
)
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
(
)
)
->
execute
(
)
;
$title
=
pht
(
'Login and Registration'
)
;
$href
=
PhabricatorEnv
::
getURI
(
'/auth/'
)
;
$have_auth
=
(bool)
$configs
;
if
(
$have_auth
)
{
$icon
=
'fa-check'
;
$icon_bg
=
'bg-green'
;
$description
=
pht
(
"You've configured at least one authentication provider."
)
;
}
else
{
$icon
=
'fa-key'
;
$icon_bg
=
'bg-sky'
;
$description
=
pht
(
'Authentication providers allow users to register accounts and '
.
'log in.'
)
;
}
$item
=
id
(
new
PhabricatorGuideItemView
(
)
)
->
setTitle
(
$title
)
->
setHref
(
$href
)
->
setIcon
(
$icon
)
->
setIconBackground
(
$icon_bg
)
->
setDescription
(
$description
)
;
$guide_items
->
addItem
(
$item
)
;
$title
=
pht
(
'Configure'
)
;
$href
=
PhabricatorEnv
::
getURI
(
'/config/'
)
;
// Just load any config value at all; if one exists the install has figured
// out how to configure things.
$have_config
=
(bool)
id
(
new
PhabricatorConfigEntry
(
)
)
->
loadAllWhere
(
'1 = 1 LIMIT 1'
)
;
if
(
$have_config
)
{
$icon
=
'fa-check'
;
$icon_bg
=
'bg-green'
;
$description
=
pht
(
"You've configured at least one setting from the web interface."
)
;
}
else
{
$icon
=
'fa-sliders'
;
$icon_bg
=
'bg-sky'
;
$description
=
pht
(
'Learn how to configure mail and other options.'
)
;
}
$item
=
id
(
new
PhabricatorGuideItemView
(
)
)
->
setTitle
(
$title
)
->
setHref
(
$href
)
->
setIcon
(
$icon
)
->
setIconBackground
(
$icon_bg
)
->
setDescription
(
$description
)
;
$guide_items
->
addItem
(
$item
)
;
$title
=
pht
(
'User Account Settings'
)
;
$href
=
PhabricatorEnv
::
getURI
(
'/settings/'
)
;
$preferences
=
id
(
new
PhabricatorUserPreferencesQuery
(
)
)
->
setViewer
(
$viewer
)
->
withUsers
(
array
(
$viewer
)
)
->
executeOne
(
)
;
$have_settings
=
(
$preferences
&&
$preferences
->
getPreferences
(
)
)
;
if
(
$have_settings
)
{
$icon
=
'fa-check'
;
$icon_bg
=
'bg-green'
;
$description
=
pht
(
"You've adjusted at least one setting on your account."
)
;
}
else
{
$icon
=
'fa-wrench'
;
$icon_bg
=
'bg-sky'
;
$description
=
pht
(
'Configure account settings for all users, or just yourself'
)
;
}
$item
=
id
(
new
PhabricatorGuideItemView
(
)
)
->
setTitle
(
$title
)
->
setHref
(
$href
)
->
setIcon
(
$icon
)
->
setIconBackground
(
$icon_bg
)
->
setDescription
(
$description
)
;
$guide_items
->
addItem
(
$item
)
;
$title
=
pht
(
'Notification Server'
)
;
$href
=
PhabricatorEnv
::
getURI
(
'/config/edit/notification.servers/'
)
;
$have_notifications
=
PhabricatorEnv
::
getEnvConfig
(
'notification.servers'
)
;
if
(
$have_notifications
)
{
$icon
=
'fa-check'
;
$icon_bg
=
'bg-green'
;
$description
=
pht
(
"You've set up a real-time notification server."
)
;
}
else
{
$icon
=
'fa-bell'
;
$icon_bg
=
'bg-sky'
;
$description
=
pht
(
'Real-time notifications can be delivered with WebSockets.'
)
;
}
$item
=
id
(
new
PhabricatorGuideItemView
(
)
)
->
setTitle
(
$title
)
->
setHref
(
$href
)
->
setIcon
(
$icon
)
->
setIconBackground
(
$icon_bg
)
->
setDescription
(
$description
)
;
$guide_items
->
addItem
(
$item
)
;
$intro
=
pht
(
'%s has been successfully installed. These next guides will '
.
'take you through configuration and new user orientation. '
.
'These steps are optional, and you can go through them in any order. '
.
'If you want to get back to this guide later on, you can find it in '
.
'{icon globe} **Applications** under {icon map-o} **Guides**.'
,
PlatformSymbols
::
getPlatformServerName
(
)
)
;
$intro
=
new
PHUIRemarkupView
(
$viewer
,
$intro
)
;
$intro
=
id
(
new
PHUIDocumentView
(
)
)
->
appendChild
(
$intro
)
;
return
array
(
$intro
,
$guide_items
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:37 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1257332
Default Alt Text
PhabricatorGuideInstallModule.php (5 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment