Skip to content

Commit

Permalink
Merge pull request #118 from vapor-community/feb-update
Browse files Browse the repository at this point in the history
Updates since November.
  • Loading branch information
Andrewangeta authored Feb 25, 2021
2 parents ccb2d27 + 87e7253 commit 9ee0715
Show file tree
Hide file tree
Showing 24 changed files with 993 additions and 83 deletions.

This file was deleted.

138 changes: 138 additions & 0 deletions Sources/StripeKit/Billing/Customer Portal/PortalConfiguration.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
//
// PortalConfiguration.swift
//
//
// Created by Andrew Edwards on 2/25/21.
//

import Foundation

public struct StripePortalConfiguration: StripeModel {
/// Unique identifier for the object.
public var id: String
/// String representing the object’s type. Objects of the same type share the same value.
public var object: String
/// Whether the configuration is active and can be used to create portal sessions.
public var active: Bool?
/// ID of the Connect Application that created the configuration.
public var application: String?
/// The business information shown to customers in the portal.
public var businessProfile: StripePortalConfigurationBusinessProfile?
/// Time at which the object was created. Measured in seconds since the Unix epoch.
public var created: Date
/// The default URL to redirect customers to when they click on the portal’s link to return to your website. This can be overriden when creating the session.
public var defaultReturnUrl: String?
/// Information about the features available in the portal.
public var features: StripePortalConfigurationFeatures?
/// Whether the configuration is the default. If true, this configuration can be managed in the Dashboard and portal sessions will use this configuration unless it is overriden when creating the session.
public var isDefault: Bool?
/// Has the value true if the object exists in live mode or the value false if the object exists in test mode.
public var livemode: Bool?
/// Time at which the object was last updated. Measured in seconds since the Unix epoch.
public var updated: Date?
}

public struct StripePortalConfigurationBusinessProfile: StripeModel {
/// The messaging shown to customers in the portal.
public var headline: String?
/// A link to the business’s publicly available privacy policy.
public var privacyPolicyUrl: String?
/// A link to the business’s publicly available terms of service.
public var termsOfServiceUrl: String?
}

public struct StripePortalConfigurationFeatures: StripeModel {
/// Information about updating customer details in the portal.
public var customerUpdate: StripePortalConfigurationFeaturesCustomerUpdate?
/// Information about showing invoice history in the portal.
public var invoiceHistory: StripePortalConfigurationFeaturesInvoiceHistory?
/// Information about updating payment methods in the portal. Only card payment methods are supported.
public var paymentMethodUpdate: StripePortalConfigurationFeaturesPaymentMethodUpdate?
/// Information about canceling subscriptions in the portal.
public var subscriptionCancel: StripePortalConfigurationFeaturesSubscriptionCancel?
/// Information about updating subscriptions in the portal.
public var subscriptionUpdate: StripePortalConfigurationFeaturesSubscriptionUpdate?
}

public struct StripePortalConfigurationFeaturesCustomerUpdate: StripeModel {
/// The types of customer updates that are supported. When empty, customers are not updateable.
public var allowedUpdates: [StripePortalConfigurationFeaturesCustomerUpdateAllowedUpdate]?
}

public enum StripePortalConfigurationFeaturesCustomerUpdateAllowedUpdate: String, StripeModel {
/// Allow updating email addresses.
case email
/// Allow updating billing addresses.
case address
/// Allow updating shipping addresses.
case shipping
/// Allow updating phone numbers.
case phone
/// Allow updating tax IDs.
case taxId = "tax_id"
}

public struct StripePortalConfigurationFeaturesInvoiceHistory: StripeModel {
/// Whether the feature is enabled.
public var enabled: Bool?
}

public struct StripePortalConfigurationFeaturesPaymentMethodUpdate: StripeModel {
/// Whether the feature is enabled.
public var enabled: Bool?
}

public struct StripePortalConfigurationFeaturesSubscriptionCancel: StripeModel {
/// Whether the feature is enabled.
public var enabled: Bool?
/// Whether to cancel subscriptions immediately or at the end of the billing period.
public var mode: StripePortalConfigurationFeaturesSubscriptionCancelMode?
/// Whether to create prorations when canceling subscriptions. Possible values are `none` and `create_prorations`.
public var prorationBehavior: String?
}

public enum StripePortalConfigurationFeaturesSubscriptionCancelMode: String, StripeModel {
/// Cancel subscriptions immediately
case immediately
/// After canceling, customers can still renew subscriptions until the billing period ends.
case atPeriodEnd = "at_period_end"
}

public struct StripePortalConfigurationFeaturesSubscriptionUpdate: StripeModel {
/// The types of subscription updates that are supported for items listed in the products attribute. When empty, subscriptions are not updateable.
public var defaultAllowedUpdates: [StripePortalConfigurationFeaturesSubscriptionUpdateDefaultAllowedUpdate]?
/// Whether the feature is enabled.
public var enabled: Bool?
/// The list of products that support subscription updates.
/// This field is not included by default. To include it in the response, expand the products field.
public var products: [StripePortalConfigurationFeaturesSubscriptionUpdateProduct]?
/// Determines how to handle prorations resulting from subscription updates. Valid values are `none`, `create_prorations`, and `always_invoice`.
public var prorationBehavior: String?
}

public enum StripePortalConfigurationFeaturesSubscriptionUpdateDefaultAllowedUpdate: String, StripeModel {
/// Allow switching to a different price.
case price
/// Allow updating subscription quantities.
case quantity
/// Allow applying promotion codes to subscriptions.
case promotionCode = "promotion_code"
}

public struct StripePortalConfigurationFeaturesSubscriptionUpdateProduct: StripeModel {
/// The list of price IDs which, when subscribed to, a subscription can be updated.
public var prices: [String]?
/// The product ID.
public var product: String?
}

public struct StripePortalConfigurationList: StripeModel {
/// String representing the object’s type. Objects of the same type share the same value. Always has the value list.
public var object: String
/// An array of `StripePortalConfiguration`s
public var data: [StripePortalConfiguration]?
/// True if this list has another page of items after this one that can be fetched.
public var hasMore: Bool?
/// The URL where this list can be accessed.
public var url: String?
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
//
// PortalConfigurationRoutes.swift
//
//
// Created by Andrew Edwards on 2/25/21.
//

import NIO
import NIOHTTP1

public protocol PortalConfigurationRoutes {
/// Creates a configuration that describes the functionality and behavior of a PortalSession
/// - Parameters:
/// - businessProfile: The business information shown to customers in the portal.
/// - features: Information about the features available in the portal.
/// - defaultReturnUrl: The default URL to redirect customers to when they click on the portal’s link to return to your website. This can be overriden when creating the session.
func create(businessProfile: [String: Any],
features: [String: Any],
defaultReturnUrl: String?) -> EventLoopFuture<StripePortalConfiguration>

/// Updates a configuration that describes the functionality of the customer portal.
/// - Parameters:
/// - configuration: The identifier of the configuration to update.
/// - active: Whether the configuration is active and can be used to create portal sessions.
/// - businessProfile: The business information shown to customers in the portal.
/// - defaultReturnUrl: The default URL to redirect customers to when they click on the portal’s link to return to your website. This can be overriden when creating the session.
/// - features: Information about the features available in the portal.
func update(configuration: String,
active: Bool?,
businessProfile: [String: Any]?,
defaultReturnUrl: String?,
features: [String: Any]?) -> EventLoopFuture<StripePortalConfiguration>

/// Retrieves a configuration that describes the functionality of the customer portal.
/// - Parameter configuration: The identifier of the configuration to retrieve.
func retrieve(configuration: String) -> EventLoopFuture<StripePortalConfiguration>

/// Returns a list of tax IDs for a customer.
///
/// - Parameter filter: A dictionary that will be used for the query parameters.
/// - Returns: A `StripePortalConfigurationList`.
func listAll(filter: [String: Any]?) -> EventLoopFuture<StripePortalConfigurationList>

/// Headers to send with the request.
var headers: HTTPHeaders { get set }
}

extension PortalConfigurationRoutes {
public func create(businessProfile: [String: Any],
features: [String: Any],
defaultReturnUrl: String? = nil) -> EventLoopFuture<StripePortalConfiguration> {
create(businessProfile: businessProfile,
features: features,
defaultReturnUrl: defaultReturnUrl)
}

public func update(configuration: String,
active: Bool? = nil,
businessProfile: [String: Any]? = nil,
defaultReturnUrl: String? = nil,
features: [String: Any]? = nil) -> EventLoopFuture<StripePortalConfiguration> {
update(configuration: configuration,
active: active,
businessProfile: businessProfile,
defaultReturnUrl: defaultReturnUrl,
features: features)
}

public func retrieve(configuration: String) -> EventLoopFuture<StripePortalConfiguration> {
retrieve(configuration: configuration)
}

public func listAll(filter: [String: Any]? = nil) -> EventLoopFuture<StripePortalConfigurationList> {
listAll(filter: filter)
}
}

public struct StripePortalConfigurationRoutes: PortalConfigurationRoutes {
public var headers: HTTPHeaders = [:]

private let apiHandler: StripeAPIHandler
private let portalconfiguration = APIBase + APIVersion + "billing_portal/configurations"

init(apiHandler: StripeAPIHandler) {
self.apiHandler = apiHandler
}

public func create(businessProfile: [String: Any],
features: [String: Any],
defaultReturnUrl: String?) -> EventLoopFuture<StripePortalConfiguration> {
var body: [String: Any] = [:]

businessProfile.forEach { body["business_profile[\($0)]"] = $1 }

features.forEach { body["features[\($0)]"] = $1 }

if let defaultReturnUrl = defaultReturnUrl {
body["default_return_url"] = defaultReturnUrl
}

return apiHandler.send(method: .POST, path: portalconfiguration, body: .string(body.queryParameters), headers: headers)
}

public func update(configuration: String,
active: Bool?,
businessProfile: [String: Any]?,
defaultReturnUrl: String?,
features: [String: Any]?) -> EventLoopFuture<StripePortalConfiguration> {
var body: [String: Any] = [:]

if let active = active {
body["active"] = active
}

if let businessProfile = businessProfile {
businessProfile.forEach { body["business_profile[\($0)]"] = $1 }
}

if let features = features {
features.forEach { body["features[\($0)]"] = $1 }
}

if let defaultReturnUrl = defaultReturnUrl {
body["default_return_url"] = defaultReturnUrl
}

return apiHandler.send(method: .POST, path: "\(portalconfiguration)/\(configuration)", body: .string(body.queryParameters), headers: headers)
}

public func retrieve(configuration: String) -> EventLoopFuture<StripePortalConfiguration> {
return apiHandler.send(method: .GET, path: "\(portalconfiguration)/\(configuration)", headers: headers)
}

public func listAll(filter: [String: Any]?) -> EventLoopFuture<StripePortalConfigurationList> {
var queryParams = ""
if let filter = filter {
queryParams = filter.queryParameters
}

return apiHandler.send(method: .GET, path: portalconfiguration, query: queryParams, headers: headers)
}
}
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
//
// CustomerSession.swift
// PortalSession.swift
//
//
// Created by Andrew Edwards on 11/28/20.
//

import Foundation

public struct StripeCustomerSession: StripeModel {
public struct StripePortalSession: StripeModel {
/// Unique identifier for the object.
public var id: String
/// String representing the object’s type. Objects of the same type share the same value.
public var object: String?
public var object: String
/// The configuration used by this session, describing the features available.
@Expandable<StripePortalConfiguration> public var configuration: String?
/// Time at which the object was created. Measured in seconds since the Unix epoch.
public var created: Date
/// The ID of the customer for this session.
public var customer: String?
/// Has the value true if the object exists in live mode or the value false if the object exists in test mode.
public var livemode: Bool?
/// The account for which the session was created on behalf of. When specified, only subscriptions and invoices with this `on_behalf_of` account appear in the portal. For more information, see the docs. Use the Accounts API to modify the `on_behalf_of` account’s branding settings, which the portal displays.
public var onBehalfOf: String?
/// The URL to which Stripe should send customers when they click on the link to return to your website.
public var returnUrl: String?
/// The short-lived URL of the session giving customers access to the customer portal.
Expand Down
Loading

0 comments on commit 9ee0715

Please sign in to comment.