Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120981816
PhortuneController.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
Tue, Jul 8, 04:14
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jul 10, 04:14 (2 d)
Engine
blob
Format
Raw Data
Handle
27274512
Attached To
rPH Phabricator
PhortuneController.php
View Options
<?php
abstract
class
PhortuneController
extends
PhabricatorController
{
protected
function
createUserAccount
(
PhabricatorUser
$user
)
{
$request
=
$this
->
getRequest
();
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhortuneAccountTransaction
())
->
setTransactionType
(
PhortuneAccountTransaction
::
TYPE_NAME
)
->
setNewValue
(
pht
(
'Account (%s)'
,
$user
->
getUserName
()));
$xactions
[]
=
id
(
new
PhortuneAccountTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_EDGE
)
->
setMetadataValue
(
'edge:type'
,
PhabricatorEdgeConfig
::
TYPE_ACCOUNT_HAS_MEMBER
)
->
setNewValue
(
array
(
'='
=>
array
(
$user
->
getPHID
()
=>
$user
->
getPHID
()),
));
$account
=
new
PhortuneAccount
();
$editor
=
id
(
new
PhortuneAccountEditor
())
->
setActor
(
$user
)
->
setContentSource
(
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_WEB
,
array
(
'ip'
=>
$request
->
getRemoteAddr
(),
)));
// We create an account for you the first time you visit Phortune.
$unguarded
=
AphrontWriteGuard
::
beginScopedUnguardedWrites
();
$editor
->
applyTransactions
(
$account
,
$xactions
);
unset
(
$unguarded
);
return
$account
;
}
}
Event Timeline
Log In to Comment