mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 07:20:08 +00:00
Merge pull request #2258 from overleaf/ta-recurly-custom-fields
Recurly Custom Fields Tracking GitOrigin-RevId: f29f56cf7d0dfa91a8f4152897ba6bd897cb6238
This commit is contained in:
parent
61243338be
commit
4d564d5cf1
6 changed files with 72 additions and 5 deletions
|
@ -250,6 +250,12 @@ module.exports = RecurlyWrapper = {
|
|||
account_code: user._id
|
||||
}
|
||||
}
|
||||
const customFields = getCustomFieldsFromSubscriptionDetails(
|
||||
subscriptionDetails
|
||||
)
|
||||
if (customFields) {
|
||||
data.custom_fields = customFields
|
||||
}
|
||||
const requestBody = RecurlyWrapper._buildXml('subscription', data)
|
||||
|
||||
return RecurlyWrapper.apiRequest(
|
||||
|
@ -356,6 +362,12 @@ module.exports = RecurlyWrapper = {
|
|||
data.account.billing_info.three_d_secure_action_result_token_id =
|
||||
recurlyTokenIds.threeDSecureActionResult
|
||||
}
|
||||
const customFields = getCustomFieldsFromSubscriptionDetails(
|
||||
subscriptionDetails
|
||||
)
|
||||
if (customFields) {
|
||||
data.custom_fields = customFields
|
||||
}
|
||||
const requestBody = RecurlyWrapper._buildXml('subscription', data)
|
||||
|
||||
return RecurlyWrapper.apiRequest(
|
||||
|
@ -996,6 +1008,26 @@ module.exports = RecurlyWrapper = {
|
|||
}
|
||||
}
|
||||
|
||||
function getCustomFieldsFromSubscriptionDetails(subscriptionDetails) {
|
||||
if (!subscriptionDetails.ITMCampaign) {
|
||||
return null
|
||||
}
|
||||
|
||||
const customFields = [
|
||||
{
|
||||
name: 'itm_campaign',
|
||||
value: subscriptionDetails.ITMCampaign
|
||||
}
|
||||
]
|
||||
if (subscriptionDetails.ITMContent) {
|
||||
customFields.push({
|
||||
name: 'itm_content',
|
||||
value: subscriptionDetails.ITMContent
|
||||
})
|
||||
}
|
||||
return { custom_field: customFields }
|
||||
}
|
||||
|
||||
function __guard__(value, transform) {
|
||||
return typeof value !== 'undefined' && value !== null
|
||||
? transform(value)
|
||||
|
|
|
@ -127,7 +127,9 @@ module.exports = SubscriptionController = {
|
|||
}),
|
||||
showCouponField: req.query.scf,
|
||||
showVatField: req.query.svf,
|
||||
couponCode: req.query.cc || ''
|
||||
couponCode: req.query.cc || '',
|
||||
ITMCampaign: req.query.itm_campaign,
|
||||
ITMContent: req.query.itm_content
|
||||
})
|
||||
}
|
||||
)
|
||||
|
|
|
@ -8,6 +8,8 @@ block head-scripts
|
|||
window.recurlyApiKey = "!{settings.apis.recurly.publicKey}"
|
||||
window.couponCode = !{StringHelper.stringifyJsonForScript(couponCode)}
|
||||
window.recomendedCurrency = !{StringHelper.stringifyJsonForScript(currency.slice(0,3))}
|
||||
window.ITMCampaign = '#{ITMCampaign}'
|
||||
window.ITMContent = '#{ITMContent}'
|
||||
|
||||
block content
|
||||
.content.content-alt
|
||||
|
|
|
@ -2,7 +2,7 @@ define(['base'], App =>
|
|||
App.controller('FreeTrialModalController', function($scope, eventTracking) {
|
||||
$scope.buttonClass = 'btn-primary'
|
||||
|
||||
$scope.startFreeTrial = function(source) {
|
||||
$scope.startFreeTrial = function(source, version) {
|
||||
const plan = 'collaborator_free_trial_7_days'
|
||||
|
||||
const w = window.open()
|
||||
|
@ -18,6 +18,11 @@ define(['base'], App =>
|
|||
)
|
||||
}
|
||||
url = `/user/subscription/new?planCode=${plan}&ssp=true`
|
||||
url = `${url}&itm_campaign=${source}`
|
||||
if (version) {
|
||||
url = `${url}&itm_content=${version}`
|
||||
}
|
||||
|
||||
$scope.startedFreeTrial = true
|
||||
|
||||
eventTracking.sendMB('subscription-start-trial', { source, plan })
|
||||
|
|
|
@ -225,7 +225,9 @@ define(['base', 'directives/creditCards'], App =>
|
|||
country: $scope.data.country,
|
||||
state: $scope.data.state,
|
||||
postal_code: $scope.data.postal_code
|
||||
}
|
||||
},
|
||||
ITMCampaign: window.ITMCampaign,
|
||||
ITMContent: window.ITMContent
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -649,7 +649,9 @@ describe('RecurlyWrapper', function() {
|
|||
country: 'some_country',
|
||||
state: 'some_state',
|
||||
zip: 'some_zip'
|
||||
}
|
||||
},
|
||||
ITMCampaign: 'itm-campaign-value',
|
||||
ITMContent: 'itm-content-value'
|
||||
}
|
||||
this.subscription = {}
|
||||
this.recurlyTokenIds = {
|
||||
|
@ -698,6 +700,16 @@ describe('RecurlyWrapper', function() {
|
|||
<three_d_secure_action_result_token_id>a-3d-token-id</three_d_secure_action_result_token_id>
|
||||
</billing_info>
|
||||
</account>
|
||||
<custom_fields>
|
||||
<custom_field>
|
||||
<name>itm_campaign</name>
|
||||
<value>itm-campaign-value</value>
|
||||
</custom_field>
|
||||
<custom_field>
|
||||
<name>itm_content</name>
|
||||
<value>itm-content-value</value>
|
||||
</custom_field>
|
||||
</custom_fields>
|
||||
</subscription>\
|
||||
`)
|
||||
return done()
|
||||
|
@ -1000,7 +1012,9 @@ describe('RecurlyWrapper', function() {
|
|||
country: 'some_country',
|
||||
state: 'some_state',
|
||||
zip: 'some_zip'
|
||||
}
|
||||
},
|
||||
ITMCampaign: 'itm-campaign-value',
|
||||
ITMContent: 'itm-content-value'
|
||||
})
|
||||
})
|
||||
})
|
||||
|
@ -1505,6 +1519,16 @@ describe('RecurlyWrapper', function() {
|
|||
<account>
|
||||
<account_code>some_id</account_code>
|
||||
</account>
|
||||
<custom_fields>
|
||||
<custom_field>
|
||||
<name>itm_campaign</name>
|
||||
<value>itm-campaign-value</value>
|
||||
</custom_field>
|
||||
<custom_field>
|
||||
<name>itm_content</name>
|
||||
<value>itm-content-value</value>
|
||||
</custom_field>
|
||||
</custom_fields>
|
||||
</subscription>\
|
||||
`)
|
||||
return done()
|
||||
|
|
Loading…
Reference in a new issue