Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96152547
PhabricatorCalendarViewController.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, Dec 23, 05:15
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 05:15 (1 d, 19 h)
Engine
blob
Format
Raw Data
Handle
23134351
Attached To
rPH Phabricator
PhabricatorCalendarViewController.php
View Options
<?php
final
class
PhabricatorCalendarViewController
extends
PhabricatorCalendarController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
processRequest
()
{
$user
=
$this
->
getRequest
()->
getUser
();
$now
=
time
();
$request
=
$this
->
getRequest
();
$year_d
=
phabricator_format_local_time
(
$now
,
$user
,
'Y'
);
$year
=
$request
->
getInt
(
'year'
,
$year_d
);
$month_d
=
phabricator_format_local_time
(
$now
,
$user
,
'm'
);
$month
=
$request
->
getInt
(
'month'
,
$month_d
);
$day
=
phabricator_format_local_time
(
$now
,
$user
,
'j'
);
$holidays
=
id
(
new
PhabricatorCalendarHoliday
())->
loadAllWhere
(
'day BETWEEN %s AND %s'
,
"{$year}-{$month}-01"
,
"{$year}-{$month}-31"
);
$statuses
=
id
(
new
PhabricatorCalendarEventQuery
())
->
setViewer
(
$user
)
->
withInvitedPHIDs
(
array
(
$user
->
getPHID
()))
->
withDateRange
(
strtotime
(
"{$year}-{$month}-01"
),
strtotime
(
"{$year}-{$month}-01 next month"
))
->
execute
();
if
(
$month
==
$month_d
&&
$year
==
$year_d
)
{
$month_view
=
new
PHUICalendarMonthView
(
$month
,
$year
,
$day
);
}
else
{
$month_view
=
new
PHUICalendarMonthView
(
$month
,
$year
);
}
$month_view
->
setBrowseURI
(
$request
->
getRequestURI
());
$month_view
->
setUser
(
$user
);
$month_view
->
setHolidays
(
$holidays
);
$phids
=
mpull
(
$statuses
,
'getUserPHID'
);
$handles
=
$this
->
loadViewerHandles
(
$phids
);
foreach
(
$statuses
as
$status
)
{
$event
=
new
AphrontCalendarEventView
();
$event
->
setEpochRange
(
$status
->
getDateFrom
(),
$status
->
getDateTo
());
$event
->
setUserPHID
(
$status
->
getUserPHID
());
$event
->
setName
(
$status
->
getHumanStatus
());
$event
->
setDescription
(
$status
->
getDescription
());
$event
->
setEventID
(
$status
->
getID
());
$month_view
->
addEvent
(
$event
);
}
$date
=
new
DateTime
(
"{$year}-{$month}-01"
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'My Events'
));
$crumbs
->
addTextCrumb
(
$date
->
format
(
'F Y'
));
$nav
=
$this
->
buildSideNavView
();
$nav
->
selectFilter
(
'/'
);
$nav
->
appendChild
(
array
(
$crumbs
,
$this
->
getNoticeView
(),
$month_view
,
));
return
$this
->
buildApplicationPage
(
$nav
,
array
(
'title'
=>
pht
(
'Calendar'
),
));
}
private
function
getNoticeView
()
{
$request
=
$this
->
getRequest
();
$view
=
null
;
if
(
$request
->
getExists
(
'created'
))
{
$view
=
id
(
new
AphrontErrorView
())
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NOTICE
)
->
setTitle
(
pht
(
'Successfully created your status.'
));
}
else
if
(
$request
->
getExists
(
'updated'
))
{
$view
=
id
(
new
AphrontErrorView
())
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NOTICE
)
->
setTitle
(
pht
(
'Successfully updated your status.'
));
}
else
if
(
$request
->
getExists
(
'deleted'
))
{
$view
=
id
(
new
AphrontErrorView
())
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NOTICE
)
->
setTitle
(
pht
(
'Successfully deleted your status.'
));
}
else
if
(!
$request
->
getUser
()->
isLoggedIn
())
{
$login_uri
=
id
(
new
PhutilURI
(
'/auth/start/'
))
->
setQueryParam
(
'next'
,
'/calendar/'
);
$view
=
id
(
new
AphrontErrorView
())
->
setSeverity
(
AphrontErrorView
::
SEVERITY_NOTICE
)
->
setTitle
(
pht
(
'You are not logged in. %s to see your calendar events.'
,
phutil_tag
(
'a'
,
array
(
'href'
=>
$login_uri
),
pht
(
'Log in'
))));
}
return
$view
;
}
}
Event Timeline
Log In to Comment