LicenseSpring C++ SDK  7.31.0
Easily add Software Licensing to your application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
LicenseManager.h
Go to the documentation of this file.
1 #ifndef LS_LICENSE_MANAGER_H
2 #define LS_LICENSE_MANAGER_H
3 
4 #ifdef _MSC_VER
5 #pragma once
6 #pragma warning( push )
7 #pragma warning( disable : 4251 )
8 #endif
9 
10 #include "BaseManager.h"
11 
12 namespace LicenseSpring
13 {
18  {
19  public:
20  using ptr_t = std::shared_ptr<LicenseManager>;
21 
27  static LicenseManager::ptr_t create( Configuration::ptr_t config, LicenseStorage::ptr_t storage = nullptr );
28 
31  LicenseManager( Configuration::ptr_t config, LicenseStorage::ptr_t storage = nullptr );
32 
34  ~LicenseManager() override;
35 
53  LicenseID getTrialLicense( Customer::ptr_t user = nullptr, const std::string& licensePolicy = std::string() );
54 
67  LicenseID getTrialLicense( const std::string& userEmail );
68 
80  std::string getSSOUrl( const std::string& accountCode = std::string(), bool useAuthCode = true );
81 
86  std::string getAirGapActivationCode( const std::string& initializationCode, const std::string& licenseKey );
87 
97  const License::ptr_t activateAirGapLicense( const std::string& confirmationCode, const std::wstring& policyPath, const std::string& licenseKey, uint32_t policyId );
98 
115  const License::ptr_t activateLicense( const LicenseID& licenseID );
116 
136  const License::ptr_t activateLicense( const std::string& authData, const std::string& accountCode = std::string(),
137  bool useAuthCode = true );
138 
147  const License::ptr_t activateLicenseOffline( const std::wstring& activationResponseFile = std::wstring() );
148 
157  const License::ptr_t relinkLicense( DeviceIDAlgorithm deviceIdAlgorithm, const std::string& userPassword = "" );
158 
170  bool changePassword( const std::string& user, const std::string& password, const std::string& newPassword );
171 
183  std::vector<std::string> getVersionList( const LicenseID& licenseID,
184  const InstallFileFilter& filter = InstallFileFilter() );
185 
199  InstallationFile::ptr_t getInstallationFile( const LicenseID& licenseID,
200  const std::string& version = std::string(),
201  const InstallFileFilter& filter = InstallFileFilter() );
202 
207  std::wstring createOfflineActivationFile( const LicenseID& licenseID,
208  const std::wstring& activationRequestFile = std::wstring() );
209 
217  bool isOnline( bool throwExceptions = false ) const;
218 
229  std::vector<LicenseUser::ptr_t> getLicenseUsers( const Customer& customer );
230 
235  std::vector<LicenseUser::ptr_t> getLicenseUsers( const std::string& customerEmail );
236 
237  };
238 }
239 
240 #ifdef _MSC_VER
241 #pragma warning( pop )
242 #endif
243 
244 #endif // LS_LICENSE_MANAGER_H
std::shared_ptr< Configuration > ptr_t
Definition: Configuration.h:20
std::shared_ptr< LicenseStorage > ptr_t
Base class for license management.
Definition: BaseManager.h:23
Class that encapsulates information about a customer.
Definition: Customer.h:17
std::shared_ptr< License > ptr_t
Definition: License.h:36
std::shared_ptr< LicenseManager > ptr_t
DeviceIDAlgorithm
Type of Device ID algorithm used by the SDK.
Definition: PODTypes.h:103
std::shared_ptr< Customer > ptr_t
Definition: Customer.h:20
#define LS_API
Macros that expands to dllexport, dllimport or nothing on non Windows platforms or in case of static ...
Definition: APIDef.h:22
Class that represents License identifier.
Definition: LicenseID.h:18
Class for performing basic requests to LicenseSpring backend and managing licenses.
std::shared_ptr< InstallationFile > ptr_t
Helper struct for filtering installation files by environment and channel.