Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F963611
PhortuneAccountViewController.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
PhortuneAccountViewController.php
View Options
<?php
final
class
PhortuneAccountViewController
extends
PhortuneController
{
private
$accountID
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
accountID
=
$data
[
'accountID'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$account
=
id
(
new
PhortuneAccountQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
accountID
))
->
executeOne
();
if
(!
$account
)
{
return
new
Aphront404Response
();
}
$title
=
$account
->
getName
();
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addCrumb
(
id
(
new
PhabricatorCrumbView
())
->
setName
(
pht
(
'Account'
))
->
setHref
(
$request
->
getRequestURI
()));
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
);
$actions
=
id
(
new
PhabricatorActionListView
())
->
setUser
(
$user
)
->
setObjectURI
(
$request
->
getRequestURI
())
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Edit Account'
))
->
setIcon
(
'edit'
)
->
setHref
(
'#'
)
->
setDisabled
(
true
))
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Edit Members'
))
->
setIcon
(
'transcript'
)
->
setHref
(
'#'
)
->
setDisabled
(
true
));
$crumbs
->
setActionList
(
$actions
);
$properties
=
id
(
new
PhabricatorPropertyListView
())
->
setObject
(
$account
)
->
setUser
(
$user
);
$properties
->
addProperty
(
pht
(
'Balance'
),
$account
->
getBalanceInCents
());
$payment_methods
=
$this
->
buildPaymentMethodsSection
(
$account
);
$purchase_history
=
$this
->
buildPurchaseHistorySection
(
$account
);
$account_history
=
$this
->
buildAccountHistorySection
(
$account
);
$object_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
setActionList
(
$actions
)
->
setPropertyList
(
$properties
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$object_box
,
$payment_methods
,
$purchase_history
,
$account_history
,
),
array
(
'title'
=>
$title
,
'device'
=>
true
,
));
}
private
function
buildPaymentMethodsSection
(
PhortuneAccount
$account
)
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Payment Methods'
));
$id
=
$account
->
getID
();
$add_uri
=
$this
->
getApplicationURI
(
$id
.
'/paymentmethod/edit/'
);
$actions
=
id
(
new
PhabricatorActionListView
())
->
setUser
(
$user
)
->
setObjectURI
(
$request
->
getRequestURI
())
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Add Payment Method'
))
->
setIcon
(
'new'
)
->
setHref
(
$add_uri
));
$list
=
id
(
new
PHUIObjectItemListView
())
->
setUser
(
$user
)
->
setNoDataString
(
pht
(
'No payment methods associated with this account.'
));
$methods
=
id
(
new
PhortunePaymentMethodQuery
())
->
setViewer
(
$user
)
->
withAccountPHIDs
(
array
(
$account
->
getPHID
()))
->
withStatus
(
PhortunePaymentMethodQuery
::
STATUS_OPEN
)
->
execute
();
if
(
$methods
)
{
$this
->
loadHandles
(
mpull
(
$methods
,
'getAuthorPHID'
));
}
foreach
(
$methods
as
$method
)
{
$item
=
new
PHUIObjectItemView
();
$item
->
setHeader
(
$method
->
getBrand
().
' / '
.
$method
->
getLastFourDigits
());
switch
(
$method
->
getStatus
())
{
case
PhortunePaymentMethod
::
STATUS_ACTIVE
:
$item
->
addAttribute
(
pht
(
'Active'
));
$item
->
setBarColor
(
'green'
);
break
;
}
$item
->
addAttribute
(
pht
(
'Added %s by %s'
,
phabricator_datetime
(
$method
->
getDateCreated
(),
$user
),
$this
->
getHandle
(
$method
->
getAuthorPHID
())->
renderLink
()));
$list
->
addItem
(
$item
);
}
return
array
(
$header
,
$actions
,
$list
,
);
}
private
function
buildPurchaseHistorySection
(
PhortuneAccount
$account
)
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Purchase History'
));
return
array
(
$header
,
);
}
private
function
buildAccountHistorySection
(
PhortuneAccount
$account
)
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Account History'
));
$xactions
=
id
(
new
PhortuneAccountTransactionQuery
())
->
setViewer
(
$user
)
->
withObjectPHIDs
(
array
(
$account
->
getPHID
()))
->
execute
();
$engine
=
id
(
new
PhabricatorMarkupEngine
())
->
setViewer
(
$user
);
$xaction_view
=
id
(
new
PhabricatorApplicationTransactionView
())
->
setUser
(
$user
)
->
setObjectPHID
(
$account
->
getPHID
())
->
setTransactions
(
$xactions
)
->
setMarkupEngine
(
$engine
);
return
array
(
$header
,
$xaction_view
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 1:18 AM (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
231976
Default Alt Text
PhortuneAccountViewController.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment