mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-25 02:40:31 -05:00
* Add GetInstallation function, allow IP Filtering page to fetch installation state, other fixes for IP filter feature * Fix pipelines * Run make build-templates * Fixing i18n * Fix openapi docs * Fix openapi docs again * make build-templates * Update test to ensure that spinner is removed after installation becomes stable * Fix types, style * update openapi because I can't validate locally... * Updates according to Matt's feedback * Add a limit to number of times installation is requested before an error is displayed * Make button disable immediately * Updates based on PR feedback * A couple missed occurrences of whitespace * Grammar fix in failed to fetch error --------- Co-authored-by: Gabe Jackson <3694686+gabrieljackson@users.noreply.github.com> Co-authored-by: Mattermost Build <build@mattermost.com>
60 lines
3.1 KiB
Go
60 lines
3.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package einterfaces
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
)
|
|
|
|
type CloudInterface interface {
|
|
GetCloudProduct(userID string, productID string) (*model.Product, error)
|
|
GetCloudProducts(userID string, includeLegacyProducts bool) ([]*model.Product, error)
|
|
GetSelfHostedProducts(userID string) ([]*model.Product, error)
|
|
GetCloudLimits(userID string) (*model.ProductLimits, error)
|
|
|
|
CreateCustomerPayment(userID string) (*model.StripeSetupIntent, error)
|
|
ConfirmCustomerPayment(userID string, confirmRequest *model.ConfirmPaymentMethodRequest) error
|
|
|
|
GetCloudCustomer(userID string) (*model.CloudCustomer, error)
|
|
GetLicenseSelfServeStatus(userID string, token string) (*model.SubscriptionLicenseSelfServeStatusResponse, error)
|
|
UpdateCloudCustomer(userID string, customerInfo *model.CloudCustomerInfo) (*model.CloudCustomer, error)
|
|
UpdateCloudCustomerAddress(userID string, address *model.Address) (*model.CloudCustomer, error)
|
|
|
|
GetSubscription(userID string) (*model.Subscription, error)
|
|
GetInvoicesForSubscription(userID string) ([]*model.Invoice, error)
|
|
GetInvoicePDF(userID, invoiceID string) ([]byte, string, error)
|
|
|
|
ChangeSubscription(userID, subscriptionID string, subscriptionChange *model.SubscriptionChange) (*model.Subscription, error)
|
|
|
|
RequestCloudTrial(userID, subscriptionID, newValidBusinessEmail string) (*model.Subscription, error)
|
|
ValidateBusinessEmail(userID, email string) error
|
|
|
|
InvalidateCaches() error
|
|
|
|
// hosted customer methods
|
|
SelfHostedSignupAvailable() error
|
|
BootstrapSelfHostedSignup(req model.BootstrapSelfHostedSignupRequest) (*model.BootstrapSelfHostedSignupResponse, error)
|
|
CreateCustomerSelfHostedSignup(req model.SelfHostedCustomerForm, requesterEmail string) (*model.SelfHostedSignupCustomerResponse, error)
|
|
ConfirmSelfHostedSignup(req model.SelfHostedConfirmPaymentMethodRequest, requesterEmail string) (*model.SelfHostedSignupConfirmResponse, error)
|
|
ConfirmSelfHostedExpansion(req model.SelfHostedConfirmPaymentMethodRequest, requesterEmail string) (*model.SelfHostedSignupConfirmResponse, error)
|
|
ConfirmSelfHostedSignupLicenseApplication() error
|
|
GetSelfHostedInvoices(rctx request.CTX) ([]*model.Invoice, error)
|
|
GetSelfHostedInvoicePDF(invoiceID string) ([]byte, string, error)
|
|
|
|
CreateOrUpdateSubscriptionHistoryEvent(userID string, userCount int) (*model.SubscriptionHistory, error)
|
|
HandleLicenseChange() error
|
|
|
|
CheckCWSConnection(userId string) error
|
|
|
|
SelfServeDeleteWorkspace(userID string, deletionRequest *model.WorkspaceDeletionRequest) error
|
|
SubscribeToNewsletter(userID string, req *model.SubscribeNewsletterRequest) error
|
|
|
|
// Used only for when a customer has telemetry disabled. In this scenario, true up review telemetry will be submitted via CWS.
|
|
SubmitTrueUpReview(userID string, trueUpReviewProfile map[string]any) error
|
|
|
|
ApplyIPFilters(userID string, ranges *model.AllowedIPRanges) (*model.AllowedIPRanges, error)
|
|
GetIPFilters(userID string) (*model.AllowedIPRanges, error)
|
|
GetInstallation(userID string) (*model.Installation, error)
|
|
}
|