-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcLicenseCollection.py
128 lines (123 loc) · 6.79 KB
/
cLicenseCollection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
gbDebugOutput = False;
# The imports are at the end to prevent import loops.
class cLicenseCollection(object):
# A license collection is a list of licenses which offers some convenience functions to import and export them, check
# them with the Windows registry and/or a server, get a valid&active license for a product, or a list of errors that
# explain why there is no valid&active license for a product.
def __init__(oSelf, aoProductDetails, aoLicenses, asLoadErrors, asLoadWarnings):
oSelf.aoProductDetails = aoProductDetails;
oSelf.aoLicenses = aoLicenses;
oSelf.asLoadErrors = asLoadErrors;
oSelf.asLoadWarnings = asLoadWarnings;
oSelf.__tasErrorsAndWarnings = None;
def ftasGetLicenseErrorsAndWarnings(oSelf):
if oSelf.__tasErrorsAndWarnings is not None:
return oSelf.__tasErrorsAndWarnings;
asLicenseErrors = oSelf.asLoadErrors[:];
asLicenseWarnings = oSelf.asLoadWarnings[:];
doLicenseServer_by_sbURL = {};
for oProductDetails in oSelf.aoProductDetails:
if oProductDetails.sb0LicenseServerURL is None:
continue; # No license required.
oLicenseServer = doLicenseServer_by_sbURL.get(oProductDetails.sb0LicenseServerURL);
if not oLicenseServer:
oLicenseServer = doLicenseServer_by_sbURL[oProductDetails.sb0LicenseServerURL] = \
cLicenseServer(oProductDetails.sb0LicenseServerURL);
if gbDebugOutput: print("* Product: %s %X" % (oProductDetails.sProductName, id(oProductDetails)));
bFoundValidLicense = False;
asProductLicensesErrors = [];
asProductLicensesWarnings = [];
asValidLicenseWarnings = [];
for oLicense in oSelf.aoLicenses:
asProductLicenseWarnings = oLicense.fasGetWarnings();
if asProductLicenseWarnings:
# We may want to show warnings for invalid licenses if we cannot find a valid one.
for sLicenseWarning in asProductLicenseWarnings:
if gbDebugOutput: print(" ! %s" % sLicenseWarning);
asProductLicensesWarnings.extend(asProductLicenseWarnings);
if gbDebugOutput: print(" * License: %s %X" % (oLicense.sLicenseId, id(oLicense)));
if oProductDetails.sProductName not in oLicense.asProductNames:
if gbDebugOutput: print(" - for products %s" % ", ".join(oLicense.asProductNames));
continue;
if oLicense.bNeedsToBeCheckedWithServer:
if gbDebugOutput: print(" * Checking with server...");
sLicenseServerError = oLicense.fsCheckWithServerAndGetError(oLicenseServer);
if sLicenseServerError:
if gbDebugOutput: print(" - %s" % sLicenseServerError);
asProductLicensesErrors.append(sLicenseServerError);
continue;
sLicenseError = oLicense.fsGetError();
if sLicenseError:
if gbDebugOutput: print(" - %s" % sLicenseError);
asProductLicensesErrors.append(sLicenseError);
continue;
if gbDebugOutput: print(" + OK");
# This license is valid
bFoundValidLicense = True;
if asLicenseWarnings: # We always want to show warnings for valid licenses.
asLicenseWarnings += asProductLicenseWarnings;
if not bFoundValidLicense:
if asProductLicensesErrors:
# No valid license found; report the errors for the licenses
if oProductDetails.bHasTrialPeriod and oProductDetails.bInTrialPeriod:
# This product is in its trial period; report all license errors as warnings:
asProductLicensesWarnings = asProductLicensesErrors + asProductLicensesWarnings;
asProductLicensesErrors = [];
asProductLicensesWarnings.append(
"Could not validate the license for %s and your trial period will expire on %s" %
(oProductDetails.sProductName, oProductDetails.o0TrialPeriodEndDate.fsToHumanReadableString())
);
elif not oProductDetails.bHasTrialPeriod:
# No license found; report an error if the product has no trial period.
asProductLicensesErrors.append(
"You have no license for %s" % oProductDetails.sProductName
);
elif oProductDetails.bInTrialPeriod:
# No license found; report a warning if in the trial period.
asProductLicensesWarnings.append(
"You have no license for %s and your trial period will expire on %s" %
(oProductDetails.sProductName, oProductDetails.o0TrialPeriodEndDate.fsToHumanReadableString())
);
else:
# No license found; report an error if the trial period has expired.
asProductLicensesErrors.append(
"You have no license for %s and your trial period expired on %s" %
(oProductDetails.sProductName, oProductDetails.o0TrialPeriodEndDate.fsToHumanReadableString())
);
asLicenseErrors += asProductLicensesErrors;
asLicenseWarnings += asProductLicensesWarnings;
oSelf.__tasErrorsAndWarnings = (asLicenseErrors, asLicenseWarnings);
return oSelf.__tasErrorsAndWarnings;
def fo0GetLicenseForProductDetails(oSelf, oProductDetails):
# Return a valid active license for the product or None.
assert oProductDetails in oSelf.aoProductDetails, \
"Product %s is not in the license collection!?" % oProductDetails.sProductName;
if gbDebugOutput: print("* Product: %s %X" % (oProductDetails.sProductName, id(oProductDetails)));
for oLicense in oSelf.aoLicenses:
if gbDebugOutput: print(" * License: %s %X" % (oLicense.sLicenseId, id(oLicense)));
if oProductDetails.sProductName not in oLicense.asProductNames:
if gbDebugOutput: print(" - product %s" % (oProductDetails.sProductName));
continue;
if oProductDetails.sb0LicenseServerURL:
oLicenseServer = cLicenseServer(oProductDetails.sb0LicenseServerURL);
sLicenseServerError = oLicense.fsCheckWithServerAndGetError(oLicenseServer);
if sLicenseServerError:
if gbDebugOutput: print(" - %s" % sLicenseServerError);
continue;
sLicenseError = oLicense.fsGetError();
if sLicenseError:
if gbDebugOutput: print(" - %s" % sLicenseError);
continue;
if gbDebugOutput: print(" + OK");
else:
if gbDebugOutput: print(" + OK (no license check server)");
return oLicense;
# ...actually you can if want to know if the product has a license:
# assert oProductDetails.bInTrialPeriod, \
# "You cannot have a product without a license that is not in its trial period and reach this code. " \
# "Did you forget to call ftasGetLicenseErrorsAndWarnings first or to terminate when it reported errors?";
return None;
@property
def sbLicenseBlocks(oSelf):
return b"\r\n".join([oLicense.sbLicenseBlock for oLicense in oSelf.aoLicenses]);
from .cLicenseServer import cLicenseServer;