Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2313073
ConpherenceNewController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
ConpherenceNewController.php
View Options
<?php
/**
* @group conpherence
*/
final
class
ConpherenceNewController
extends
ConpherenceController
{
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$conpherence
=
id
(
new
ConpherenceThread
())
->
attachParticipants
(
array
())
->
attachFilePHIDs
(
array
());
$title
=
pht
(
'New Conpherence'
);
$participants
=
array
();
$message
=
''
;
$files
=
array
();
$errors
=
array
();
$e_participants
=
null
;
$e_message
=
null
;
// this comes from ajax requests from all over. should be a single phid.
$participant_prefill
=
$request
->
getStr
(
'participant'
);
if
(
$participant_prefill
)
{
$participants
[]
=
$participant_prefill
;
}
if
(
$request
->
isFormPost
())
{
$participants
=
$request
->
getArr
(
'participants'
);
if
(
empty
(
$participants
))
{
$e_participants
=
true
;
$errors
[]
=
pht
(
'You must specify participants.'
);
}
else
{
$participants
[]
=
$user
->
getPHID
();
$participants
=
array_unique
(
$participants
);
}
$message
=
$request
->
getStr
(
'message'
);
if
(
empty
(
$message
))
{
$e_message
=
true
;
$errors
[]
=
pht
(
'You must write a message.'
);
}
$file_phids
=
PhabricatorMarkupEngine
::
extractFilePHIDsFromEmbeddedFiles
(
array
(
$message
)
);
if
(
$file_phids
)
{
$files
=
id
(
new
PhabricatorFileQuery
())
->
setViewer
(
$user
)
->
withPHIDs
(
$file_phids
)
->
execute
();
}
if
(!
$errors
)
{
$conpherence
->
openTransaction
();
$conpherence
->
save
();
$xactions
=
array
();
$xactions
[]
=
id
(
new
ConpherenceTransaction
())
->
setTransactionType
(
ConpherenceTransactionType
::
TYPE_PARTICIPANTS
)
->
setNewValue
(
array
(
'+'
=>
$participants
));
if
(
$files
)
{
$xactions
[]
=
id
(
new
ConpherenceTransaction
())
->
setTransactionType
(
ConpherenceTransactionType
::
TYPE_FILES
)
->
setNewValue
(
array
(
'+'
=>
mpull
(
$files
,
'getPHID'
)));
}
$xactions
[]
=
id
(
new
ConpherenceTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_COMMENT
)
->
attachComment
(
id
(
new
ConpherenceTransactionComment
())
->
setContent
(
$message
)
->
setConpherencePHID
(
$conpherence
->
getPHID
())
);
$content_source
=
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_WEB
,
array
(
'ip'
=>
$request
->
getRemoteAddr
()
)
);
id
(
new
ConpherenceEditor
())
->
setContentSource
(
$content_source
)
->
setContinueOnNoEffect
(
true
)
->
setActor
(
$user
)
->
applyTransactions
(
$conpherence
,
$xactions
);
$conpherence
->
saveTransaction
();
if
(
$request
->
isAjax
())
{
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$user
)
->
setTitle
(
'Success'
)
->
addCancelButton
(
'#'
,
'Okay'
)
->
appendChild
(
phutil_render_tag
(
'p'
,
array
(),
pht
(
'Message sent successfully.'
)
)
);
$response
=
id
(
new
AphrontDialogResponse
())
->
setDialog
(
$dialog
);
}
else
{
$uri
=
$this
->
getApplicationURI
(
$conpherence
->
getID
());
$response
=
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$uri
);
}
return
$response
;
}
}
$error_view
=
null
;
if
(
$errors
)
{
$error_view
=
id
(
new
AphrontErrorView
())
->
setTitle
(
pht
(
'Conpherence Errors'
))
->
setErrors
(
$errors
);
}
$participant_handles
=
array
();
if
(
$participants
)
{
$handles
=
id
(
new
PhabricatorObjectHandleData
(
$participants
))
->
setViewer
(
$user
)
->
loadHandles
();
$participant_handles
=
mpull
(
$handles
,
'getFullName'
,
'getPHID'
);
}
$submit_uri
=
$this
->
getApplicationURI
(
'new/'
);
$cancel_uri
=
$this
->
getApplicationURI
();
if
(
$request
->
isAjax
())
{
// TODO - we can get a better cancel_uri once we get better at crazy
// ajax jonx T2086
if
(
$participant_prefill
)
{
$handle
=
$handles
[
$participant_prefill
];
$cancel_uri
=
$handle
->
getURI
();
}
$form
=
id
(
new
AphrontDialogView
())
->
setSubmitURI
(
$submit_uri
)
->
addSubmitButton
()
->
setWidth
(
AphrontDialogView
::
WIDTH_FORM
)
->
addCancelButton
(
$cancel_uri
);
}
else
{
$form
=
id
(
new
AphrontFormView
())
->
setID
(
'conpherence-message-pane'
)
->
setAction
(
$submit_uri
);
}
$form
->
setUser
(
$user
)
->
appendChild
(
id
(
new
AphrontFormTokenizerControl
())
->
setName
(
'participants'
)
->
setValue
(
$participant_handles
)
->
setUser
(
$user
)
->
setDatasource
(
'/typeahead/common/users/'
)
->
setLabel
(
pht
(
'To'
))
->
setError
(
$e_participants
)
)
->
appendChild
(
id
(
new
PhabricatorRemarkupControl
())
->
setName
(
'message'
)
->
setValue
(
$message
)
->
setLabel
(
pht
(
'Message'
))
->
setPlaceHolder
(
pht
(
'Drag and drop to include files...'
))
->
setError
(
$e_message
)
);
if
(
$request
->
isAjax
())
{
$form
->
setTitle
(
$title
);
return
id
(
new
AphrontDialogResponse
())
->
setDialog
(
$form
);
}
$form
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
pht
(
'Submit'
))
->
addCancelButton
(
$cancel_uri
)
);
$this
->
loadStartingConpherences
();
$this
->
setSelectedConpherencePHID
(
null
);
$this
->
initJavelinBehaviors
();
$nav
=
$this
->
buildSideNavView
(
'new'
);
$header
=
id
(
new
PhabricatorHeaderView
())
->
setHeader
(
$title
);
$nav
->
appendChild
(
array
(
$header
,
$error_view
,
$form
,
));
return
$this
->
buildApplicationPage
(
$nav
,
array
(
'title'
=>
$title
,
'device'
=>
true
,
)
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Sep 16, 3:50 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
442342
Default Alt Text
ConpherenceNewController.php (5 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment