Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F540034
PhabricatorCountdownSearchEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
PhabricatorCountdownSearchEngine.php
View Options
<?php
final
class
PhabricatorCountdownSearchEngine
extends
PhabricatorApplicationSearchEngine
{
public
function
getResultTypeDescription
()
{
return
pht
(
'Countdowns'
);
}
public
function
getApplicationClassName
()
{
return
PhabricatorCountdownApplication
::
class
;
}
public
function
newQuery
()
{
return
new
PhabricatorCountdownQuery
();
}
protected
function
buildQueryFromParameters
(
array
$map
)
{
$query
=
$this
->
newQuery
();
if
(
$map
[
'authorPHIDs'
])
{
$query
->
withAuthorPHIDs
(
$map
[
'authorPHIDs'
]);
}
if
(
$map
[
'upcoming'
]
&&
$map
[
'upcoming'
][
0
]
==
'upcoming'
)
{
$query
->
withUpcoming
();
}
return
$query
;
}
protected
function
buildCustomSearchFields
()
{
return
array
(
id
(
new
PhabricatorUsersSearchField
())
->
setLabel
(
pht
(
'Authors'
))
->
setKey
(
'authorPHIDs'
)
->
setAliases
(
array
(
'author'
,
'authors'
)),
id
(
new
PhabricatorSearchCheckboxesField
())
->
setKey
(
'upcoming'
)
->
setOptions
(
array
(
'upcoming'
=>
pht
(
'Show only upcoming countdowns.'
),
)),
);
}
protected
function
getURI
(
$path
)
{
return
'/countdown/'
.
$path
;
}
protected
function
getBuiltinQueryNames
()
{
$names
=
array
(
'upcoming'
=>
pht
(
'Upcoming'
),
'all'
=>
pht
(
'All'
),
);
if
(
$this
->
requireViewer
()->
getPHID
())
{
$names
[
'authored'
]
=
pht
(
'Authored'
);
}
return
$names
;
}
public
function
buildSavedQueryFromBuiltin
(
$query_key
)
{
$query
=
$this
->
newSavedQuery
();
$query
->
setQueryKey
(
$query_key
);
switch
(
$query_key
)
{
case
'all'
:
return
$query
;
case
'authored'
:
return
$query
->
setParameter
(
'authorPHIDs'
,
array
(
$this
->
requireViewer
()->
getPHID
()));
case
'upcoming'
:
return
$query
->
setParameter
(
'upcoming'
,
array
(
'upcoming'
));
}
return
parent
::
buildSavedQueryFromBuiltin
(
$query_key
);
}
protected
function
getRequiredHandlePHIDsForResultList
(
array
$countdowns
,
PhabricatorSavedQuery
$query
)
{
return
mpull
(
$countdowns
,
'getAuthorPHID'
);
}
protected
function
renderResultList
(
array
$countdowns
,
PhabricatorSavedQuery
$query
,
array
$handles
)
{
assert_instances_of
(
$countdowns
,
'PhabricatorCountdown'
);
$viewer
=
$this
->
requireViewer
();
$list
=
new
PHUIObjectItemListView
();
$list
->
setUser
(
$viewer
);
foreach
(
$countdowns
as
$countdown
)
{
$id
=
$countdown
->
getID
();
$ended
=
false
;
$epoch
=
$countdown
->
getEpoch
();
if
(
$epoch
<=
PhabricatorTime
::
getNow
())
{
$ended
=
true
;
}
$item
=
id
(
new
PHUIObjectItemView
())
->
setUser
(
$viewer
)
->
setObject
(
$countdown
)
->
setObjectName
(
$countdown
->
getMonogram
())
->
setHeader
(
$countdown
->
getTitle
())
->
setHref
(
$countdown
->
getURI
())
->
addByline
(
pht
(
'Created by %s'
,
$handles
[
$countdown
->
getAuthorPHID
()]->
renderLink
()));
if
(
$ended
)
{
$item
->
addAttribute
(
pht
(
'Launched on %s'
,
phabricator_datetime
(
$epoch
,
$viewer
)));
$item
->
setDisabled
(
true
);
}
else
{
$time_left
=
(
$epoch
-
PhabricatorTime
::
getNow
());
$num
=
round
(
$time_left
/
(
60
*
60
*
24
));
$noun
=
pht
(
'Days'
);
if
(
$num
<
1
)
{
$num
=
round
(
$time_left
/
(
60
*
60
),
1
);
$noun
=
pht
(
'Hours'
);
}
$item
->
setCountdown
(
$num
,
$noun
);
$item
->
addAttribute
(
phabricator_datetime
(
$epoch
,
$viewer
));
}
$list
->
addItem
(
$item
);
}
$result
=
new
PhabricatorApplicationSearchResultView
();
$result
->
setObjectList
(
$list
);
$result
->
setNoDataString
(
pht
(
'No countdowns found.'
));
return
$result
;
}
protected
function
getNewUserBody
()
{
$create_button
=
id
(
new
PHUIButtonView
())
->
setTag
(
'a'
)
->
setText
(
pht
(
'Create a Countdown'
))
->
setHref
(
'/countdown/edit/'
)
->
setColor
(
PHUIButtonView
::
GREEN
);
$icon
=
$this
->
getApplication
()->
getIcon
();
$app_name
=
$this
->
getApplication
()->
getName
();
$view
=
id
(
new
PHUIBigInfoView
())
->
setIcon
(
$icon
)
->
setTitle
(
pht
(
'Welcome to %s'
,
$app_name
))
->
setDescription
(
pht
(
'Keep track of upcoming launch dates with '
.
'embeddable counters.'
))
->
addAction
(
$create_button
);
return
$view
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 9:24 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
106525
Default Alt Text
PhabricatorCountdownSearchEngine.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment