Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91953563
ConpherenceColumnViewController.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
Sat, Nov 16, 02:16
Size
3 KB
Mime Type
text/x-php
Expires
Mon, Nov 18, 02:16 (2 d)
Engine
blob
Format
Raw Data
Handle
22353275
Attached To
rPH Phabricator
ConpherenceColumnViewController.php
View Options
<?php
final
class
ConpherenceColumnViewController
extends
ConpherenceController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$user
=
$request
->
getUser
();
$latest_conpherences
=
array
();
$latest_participant
=
id
(
new
ConpherenceParticipantQuery
())
->
withParticipantPHIDs
(
array
(
$user
->
getPHID
()))
->
setLimit
(
6
)
->
execute
();
if
(
$latest_participant
)
{
$conpherence_phids
=
mpull
(
$latest_participant
,
'getConpherencePHID'
);
$latest_conpherences
=
id
(
new
ConpherenceThreadQuery
())
->
setViewer
(
$user
)
->
withPHIDs
(
$conpherence_phids
)
->
needCropPics
(
true
)
->
needParticipantCache
(
true
)
->
execute
();
$latest_conpherences
=
mpull
(
$latest_conpherences
,
null
,
'getPHID'
);
$latest_conpherences
=
array_select_keys
(
$latest_conpherences
,
$conpherence_phids
);
}
$conpherence
=
null
;
$should_404
=
false
;
if
(
$request
->
getInt
(
'id'
))
{
$conpherence
=
id
(
new
ConpherenceThreadQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$request
->
getInt
(
'id'
)))
->
needCropPics
(
true
)
->
needTransactions
(
true
)
->
setTransactionLimit
(
ConpherenceThreadQuery
::
TRANSACTION_LIMIT
)
->
executeOne
();
$should_404
=
true
;
}
else
if
(
$latest_participant
)
{
$participant
=
head
(
$latest_participant
);
$conpherence
=
id
(
new
ConpherenceThreadQuery
())
->
setViewer
(
$user
)
->
withPHIDs
(
array
(
$participant
->
getConpherencePHID
()))
->
needCropPics
(
true
)
->
needTransactions
(
true
)
->
setTransactionLimit
(
ConpherenceThreadQuery
::
TRANSACTION_LIMIT
)
->
executeOne
();
$should_404
=
true
;
}
$durable_column
=
id
(
new
ConpherenceDurableColumnView
())
->
setUser
(
$user
)
->
setVisible
(
true
);
if
(!
$conpherence
)
{
if
(
$should_404
)
{
return
new
Aphront404Response
();
}
$conpherence_id
=
null
;
$conpherence_phid
=
null
;
$latest_transaction_id
=
null
;
$can_edit
=
false
;
}
else
{
$this
->
setConpherence
(
$conpherence
);
$participant
=
$conpherence
->
getParticipant
(
$user
->
getPHID
());
$transactions
=
$conpherence
->
getTransactions
();
$latest_transaction
=
head
(
$transactions
);
$write_guard
=
AphrontWriteGuard
::
beginScopedUnguardedWrites
();
$participant
->
markUpToDate
(
$conpherence
,
$latest_transaction
);
unset
(
$write_guard
);
$draft
=
PhabricatorDraft
::
newFromUserAndKey
(
$user
,
$conpherence
->
getPHID
());
$durable_column
->
setDraft
(
$draft
)
->
setSelectedConpherence
(
$conpherence
)
->
setConpherences
(
$latest_conpherences
);
$conpherence_id
=
$conpherence
->
getID
();
$conpherence_phid
=
$conpherence
->
getPHID
();
$latest_transaction_id
=
$latest_transaction
->
getID
();
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$user
,
$conpherence
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
}
$dropdown_query
=
id
(
new
AphlictDropdownDataQuery
())
->
setViewer
(
$user
);
$dropdown_query
->
execute
();
$response
=
array
(
'content'
=>
hsprintf
(
'%s'
,
$durable_column
),
'threadID'
=>
$conpherence_id
,
'threadPHID'
=>
$conpherence_phid
,
'latestTransactionID'
=>
$latest_transaction_id
,
'canEdit'
=>
$can_edit
,
'aphlictDropdownData'
=>
array
(
$dropdown_query
->
getNotificationData
(),
$dropdown_query
->
getConpherenceData
(),
),
);
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
$response
);
}
}
Event Timeline
Log In to Comment