Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96156670
PhortuneSubscriptionViewController.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, 06:52
Size
6 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 06:52 (2 d)
Engine
blob
Format
Raw Data
Handle
23127182
Attached To
rPH Phabricator
PhortuneSubscriptionViewController.php
View Options
<?php
final
class
PhortuneSubscriptionViewController
extends
PhortuneController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$authority
=
$this
->
loadMerchantAuthority
();
$subscription_query
=
id
(
new
PhortuneSubscriptionQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$request
->
getURIData
(
'id'
)))
->
needTriggers
(
true
);
if
(
$authority
)
{
$subscription_query
->
withMerchantPHIDs
(
array
(
$authority
->
getPHID
()));
}
$subscription
=
$subscription_query
->
executeOne
();
if
(!
$subscription
)
{
return
new
Aphront404Response
();
}
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$subscription
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$merchant
=
$subscription
->
getMerchant
();
$account
=
$subscription
->
getAccount
();
$account_id
=
$account
->
getID
();
$subscription_id
=
$subscription
->
getID
();
$title
=
$subscription
->
getSubscriptionFullName
();
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
)
->
setHeaderIcon
(
'fa-calendar-o'
);
$curtain
=
$this
->
newCurtainView
(
$subscription
);
$edit_uri
=
$subscription
->
getEditURI
();
$curtain
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setIcon
(
'fa-pencil'
)
->
setName
(
pht
(
'Edit Subscription'
))
->
setHref
(
$edit_uri
)
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(!
$can_edit
));
$crumbs
=
$this
->
buildApplicationCrumbs
();
if
(
$authority
)
{
$this
->
addMerchantCrumb
(
$crumbs
,
$merchant
);
}
else
{
$this
->
addAccountCrumb
(
$crumbs
,
$account
);
}
$crumbs
->
addTextCrumb
(
$subscription
->
getSubscriptionCrumbName
());
$crumbs
->
setBorder
(
true
);
$properties
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$viewer
);
$next_invoice
=
$subscription
->
getTrigger
()->
getNextEventPrediction
();
$properties
->
addProperty
(
pht
(
'Next Invoice'
),
phabricator_datetime
(
$next_invoice
,
$viewer
));
$default_method
=
$subscription
->
getDefaultPaymentMethodPHID
();
if
(
$default_method
)
{
$method
=
id
(
new
PhortunePaymentMethodQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$default_method
))
->
withStatuses
(
array
(
PhortunePaymentMethod
::
STATUS_ACTIVE
,
))
->
executeOne
();
if
(
$method
)
{
$handles
=
$this
->
loadViewerHandles
(
array
(
$default_method
));
$autopay_method
=
$handles
[
$default_method
]->
renderLink
();
}
else
{
$autopay_method
=
phutil_tag
(
'em'
,
array
(),
pht
(
'<Deleted Payment Method>'
));
}
}
else
{
$autopay_method
=
phutil_tag
(
'em'
,
array
(),
pht
(
'No Autopay Method Configured'
));
}
$properties
->
addProperty
(
pht
(
'Autopay With'
),
$autopay_method
);
$details
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Details'
))
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
addPropertyList
(
$properties
);
$due_box
=
$this
->
buildDueInvoices
(
$subscription
,
$authority
);
$invoice_box
=
$this
->
buildPastInvoices
(
$subscription
,
$authority
);
$view
=
id
(
new
PHUITwoColumnView
())
->
setHeader
(
$header
)
->
setCurtain
(
$curtain
)
->
setMainColumn
(
array
(
$details
,
$due_box
,
$invoice_box
,
));
return
$this
->
newPage
()
->
setTitle
(
$title
)
->
setCrumbs
(
$crumbs
)
->
appendChild
(
$view
);
}
private
function
buildDueInvoices
(
PhortuneSubscription
$subscription
,
$authority
)
{
$viewer
=
$this
->
getViewer
();
$invoices
=
id
(
new
PhortuneCartQuery
())
->
setViewer
(
$viewer
)
->
withSubscriptionPHIDs
(
array
(
$subscription
->
getPHID
()))
->
needPurchases
(
true
)
->
withInvoices
(
true
)
->
execute
();
$phids
=
array
();
foreach
(
$invoices
as
$invoice
)
{
$phids
[]
=
$invoice
->
getPHID
();
$phids
[]
=
$invoice
->
getMerchantPHID
();
foreach
(
$invoice
->
getPurchases
()
as
$purchase
)
{
$phids
[]
=
$purchase
->
getPHID
();
}
}
$handles
=
$this
->
loadViewerHandles
(
$phids
);
$invoice_table
=
id
(
new
PhortuneOrderTableView
())
->
setUser
(
$viewer
)
->
setCarts
(
$invoices
)
->
setIsInvoices
(
true
)
->
setIsMerchantView
((
bool
)
$authority
)
->
setHandles
(
$handles
);
$invoice_header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Invoices Due'
));
return
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$invoice_header
)
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
appendChild
(
$invoice_table
);
}
private
function
buildPastInvoices
(
PhortuneSubscription
$subscription
,
$authority
)
{
$viewer
=
$this
->
getViewer
();
$invoices
=
id
(
new
PhortuneCartQuery
())
->
setViewer
(
$viewer
)
->
withSubscriptionPHIDs
(
array
(
$subscription
->
getPHID
()))
->
needPurchases
(
true
)
->
withStatuses
(
array
(
PhortuneCart
::
STATUS_PURCHASING
,
PhortuneCart
::
STATUS_CHARGED
,
PhortuneCart
::
STATUS_HOLD
,
PhortuneCart
::
STATUS_REVIEW
,
PhortuneCart
::
STATUS_PURCHASED
,
))
->
setLimit
(
50
)
->
execute
();
$phids
=
array
();
foreach
(
$invoices
as
$invoice
)
{
$phids
[]
=
$invoice
->
getPHID
();
foreach
(
$invoice
->
getPurchases
()
as
$purchase
)
{
$phids
[]
=
$purchase
->
getPHID
();
}
}
$handles
=
$this
->
loadViewerHandles
(
$phids
);
$invoice_table
=
id
(
new
PhortuneOrderTableView
())
->
setUser
(
$viewer
)
->
setCarts
(
$invoices
)
->
setHandles
(
$handles
);
$account
=
$subscription
->
getAccount
();
$merchant
=
$subscription
->
getMerchant
();
$account_id
=
$account
->
getID
();
$merchant_id
=
$merchant
->
getID
();
$subscription_id
=
$subscription
->
getID
();
if
(
$authority
)
{
$invoices_uri
=
$this
->
getApplicationURI
(
"merchant/{$merchant_id}/subscription/order/{$subscription_id}/"
);
}
else
{
$invoices_uri
=
$this
->
getApplicationURI
(
"{$account_id}/subscription/order/{$subscription_id}/"
);
}
$invoice_header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Past Invoices'
))
->
addActionLink
(
id
(
new
PHUIButtonView
())
->
setTag
(
'a'
)
->
setIcon
(
'fa-list'
)
->
setHref
(
$invoices_uri
)
->
setText
(
pht
(
'View All Invoices'
)));
return
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$invoice_header
)
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
appendChild
(
$invoice_table
);
}
}
Event Timeline
Log In to Comment