Merge branch 'master' into doppins/alembic-equals-0.9.9
This commit is contained in:
commit
1730b3bacc
|
@ -332,9 +332,8 @@ class Certificate(db.Model):
|
||||||
|
|
||||||
return_extensions['authority_key_identifier'] = aki
|
return_extensions['authority_key_identifier'] = aki
|
||||||
|
|
||||||
# TODO: Don't support CRLDistributionPoints yet https://github.com/Netflix/lemur/issues/662
|
|
||||||
elif isinstance(value, x509.CRLDistributionPoints):
|
elif isinstance(value, x509.CRLDistributionPoints):
|
||||||
current_app.logger.warning('CRLDistributionPoints not yet supported for clone operation.')
|
return_extensions['crl_distribution_points'] = {'include_crl_dp': value}
|
||||||
|
|
||||||
# TODO: Not supporting custom OIDs yet. https://github.com/Netflix/lemur/issues/665
|
# TODO: Not supporting custom OIDs yet. https://github.com/Netflix/lemur/issues/665
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -220,6 +220,14 @@ class CertificateInfoAccessSchema(BaseExtensionSchema):
|
||||||
return {'includeAIA': data['include_aia']}
|
return {'includeAIA': data['include_aia']}
|
||||||
|
|
||||||
|
|
||||||
|
class CRLDistributionPointsSchema(BaseExtensionSchema):
|
||||||
|
include_crl_dp = fields.String()
|
||||||
|
|
||||||
|
@post_dump
|
||||||
|
def handle_keys(self, data):
|
||||||
|
return {'includeCRLDP': data['include_crl_dp']}
|
||||||
|
|
||||||
|
|
||||||
class SubjectKeyIdentifierSchema(BaseExtensionSchema):
|
class SubjectKeyIdentifierSchema(BaseExtensionSchema):
|
||||||
include_ski = fields.Boolean()
|
include_ski = fields.Boolean()
|
||||||
|
|
||||||
|
@ -240,13 +248,14 @@ class NamesSchema(BaseExtensionSchema):
|
||||||
|
|
||||||
|
|
||||||
class ExtensionSchema(BaseExtensionSchema):
|
class ExtensionSchema(BaseExtensionSchema):
|
||||||
basic_constraints = BasicConstraintsExtension(missing={'ca': False})
|
basic_constraints = BasicConstraintsExtension() # some devices balk on default basic constraints
|
||||||
key_usage = KeyUsageExtension()
|
key_usage = KeyUsageExtension()
|
||||||
extended_key_usage = ExtendedKeyUsageExtension()
|
extended_key_usage = ExtendedKeyUsageExtension()
|
||||||
subject_key_identifier = fields.Nested(SubjectKeyIdentifierSchema)
|
subject_key_identifier = fields.Nested(SubjectKeyIdentifierSchema)
|
||||||
sub_alt_names = fields.Nested(NamesSchema)
|
sub_alt_names = fields.Nested(NamesSchema)
|
||||||
authority_key_identifier = fields.Nested(AuthorityKeyIdentifierSchema)
|
authority_key_identifier = fields.Nested(AuthorityKeyIdentifierSchema)
|
||||||
certificate_info_access = fields.Nested(CertificateInfoAccessSchema)
|
certificate_info_access = fields.Nested(CertificateInfoAccessSchema)
|
||||||
|
crl_distribution_points = fields.Nested(CRLDistributionPointsSchema, dump_to='cRL_distribution_points')
|
||||||
# FIXME: Convert custom OIDs to a custom field in fields.py like other Extensions
|
# FIXME: Convert custom OIDs to a custom field in fields.py like other Extensions
|
||||||
# FIXME: Remove support in UI for Critical custom extensions https://github.com/Netflix/lemur/issues/665
|
# FIXME: Remove support in UI for Critical custom extensions https://github.com/Netflix/lemur/issues/665
|
||||||
custom = fields.List(fields.Nested(CustomOIDSchema))
|
custom = fields.List(fields.Nested(CustomOIDSchema))
|
||||||
|
|
|
@ -182,7 +182,7 @@
|
||||||
cRL Distribution Points
|
cRL Distribution Points
|
||||||
</label>
|
</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
<select class="form-control" ng-model="authority.extensions.cRLDistributionPoints.includeCRLDP" ng-options="item for item in ['yes', 'no', 'default']"></select>
|
<select class="form-control" ng-model="authority.extensions.crlDistributionPoints.includeCrlDp" ng-options="item for item in ['yes', 'no', 'default']"></select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|
|
@ -196,7 +196,7 @@
|
||||||
cRL Distribution Points
|
cRL Distribution Points
|
||||||
</label>
|
</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
<select class="form-control" ng-model="certificate.extensions.cRLDistributionPoints.includeCRLDP"
|
<select class="form-control" ng-model="certificate.extensions.crlDistributionPoints.includeCrlDp"
|
||||||
ng-options="item for item in ['yes', 'no', 'default']"></select>
|
ng-options="item for item in ['yes', 'no', 'default']"></select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -42,8 +42,8 @@ pycparser==2.18 # via cffi
|
||||||
pyflakes==1.6.0
|
pyflakes==1.6.0
|
||||||
pytest-flask==0.10.0
|
pytest-flask==0.10.0
|
||||||
pytest-mock==1.7.1
|
pytest-mock==1.7.1
|
||||||
pytest==3.4.2
|
pytest==3.5.0
|
||||||
python-dateutil==2.6.1 # via botocore, faker, freezegun, moto
|
python-dateutil==2.7.2 # via botocore, faker, freezegun, moto
|
||||||
pytz==2018.3 # via moto
|
pytz==2018.3 # via moto
|
||||||
pyyaml==3.12 # via pyaml
|
pyyaml==3.12 # via pyaml
|
||||||
requests-mock==1.4.0
|
requests-mock==1.4.0
|
||||||
|
|
|
@ -23,10 +23,10 @@ paramiko==2.4.1 # required for lemur_linuxdst plugin
|
||||||
pem==17.1.0
|
pem==17.1.0
|
||||||
psycopg2
|
psycopg2
|
||||||
pyjwt
|
pyjwt
|
||||||
pyOpenSSL
|
pyOpenSSL==17.2.0
|
||||||
python_ldap
|
python_ldap
|
||||||
raven[flask]==6.2.1
|
raven[flask]==6.2.1
|
||||||
requests
|
requests==2.11.1
|
||||||
retrying==1.3.3
|
retrying==1.3.3
|
||||||
six==1.11.0
|
six==1.11.0
|
||||||
SQLAlchemy-Utils
|
SQLAlchemy-Utils
|
||||||
|
|
|
@ -14,9 +14,7 @@ bcrypt==3.1.4 # via flask-bcrypt, paramiko
|
||||||
blinker==1.4 # via flask-mail, flask-principal, raven
|
blinker==1.4 # via flask-mail, flask-principal, raven
|
||||||
boto3==1.6.12
|
boto3==1.6.12
|
||||||
botocore==1.9.12 # via boto3, s3transfer
|
botocore==1.9.12 # via boto3, s3transfer
|
||||||
certifi==2018.1.18 # via requests
|
|
||||||
cffi==1.11.5 # via bcrypt, cryptography, pynacl
|
cffi==1.11.5 # via bcrypt, cryptography, pynacl
|
||||||
chardet==3.0.4 # via requests
|
|
||||||
click==6.7 # via flask
|
click==6.7 # via flask
|
||||||
cryptography==2.2.1
|
cryptography==2.2.1
|
||||||
docutils==0.14 # via botocore
|
docutils==0.14 # via botocore
|
||||||
|
@ -30,7 +28,7 @@ flask-sqlalchemy==2.3.2
|
||||||
flask==0.12
|
flask==0.12
|
||||||
future==0.16.0
|
future==0.16.0
|
||||||
gunicorn==19.7.1
|
gunicorn==19.7.1
|
||||||
idna==2.6 # via cryptography, requests
|
idna==2.6 # via cryptography
|
||||||
inflection==0.3.1
|
inflection==0.3.1
|
||||||
itsdangerous==0.24 # via flask
|
itsdangerous==0.24 # via flask
|
||||||
jinja2==2.10
|
jinja2==2.10
|
||||||
|
@ -48,24 +46,23 @@ pbr==3.1.1 # via mock
|
||||||
pem==17.1.0
|
pem==17.1.0
|
||||||
psycopg2==2.7.4
|
psycopg2==2.7.4
|
||||||
pyasn1-modules==0.2.1 # via python-ldap
|
pyasn1-modules==0.2.1 # via python-ldap
|
||||||
pyasn1==0.4.2 # via paramiko, pyasn1-modules, python-ldap
|
pyasn1==0.4.2 # via paramiko, pyasn1-modules, python-ldap, requests
|
||||||
pycparser==2.18 # via cffi
|
pycparser==2.18 # via cffi
|
||||||
pyjwt==1.6.1
|
pyjwt==1.6.1
|
||||||
pynacl==1.2.1 # via paramiko
|
pynacl==1.2.1 # via paramiko
|
||||||
pyopenssl==17.5.0
|
pyopenssl==17.2.0
|
||||||
pyrfc3339==1.0 # via acme
|
pyrfc3339==1.0 # via acme
|
||||||
python-dateutil==2.6.1 # via alembic, arrow, botocore
|
python-dateutil==2.6.1 # via alembic, arrow, botocore
|
||||||
python-editor==1.0.3 # via alembic
|
python-editor==1.0.3 # via alembic
|
||||||
python-ldap==3.0.0
|
python-ldap==3.0.0
|
||||||
pytz==2018.3 # via acme, flask-restful, pyrfc3339
|
pytz==2018.3 # via acme, flask-restful, pyrfc3339
|
||||||
raven[flask]==6.2.1
|
raven[flask]==6.2.1
|
||||||
requests[security]==2.18.4
|
requests[security]==2.11.1
|
||||||
retrying==1.3.3
|
retrying==1.3.3
|
||||||
s3transfer==0.1.13 # via boto3
|
s3transfer==0.1.13 # via boto3
|
||||||
six==1.11.0
|
six==1.11.0
|
||||||
sqlalchemy-utils==0.33.1
|
sqlalchemy-utils==0.33.1
|
||||||
sqlalchemy==1.2.5 # via alembic, flask-sqlalchemy, marshmallow-sqlalchemy, sqlalchemy-utils
|
sqlalchemy==1.2.5 # via alembic, flask-sqlalchemy, marshmallow-sqlalchemy, sqlalchemy-utils
|
||||||
tabulate==0.8.2
|
tabulate==0.8.2
|
||||||
urllib3==1.22 # via requests
|
|
||||||
werkzeug==0.14.1 # via flask
|
werkzeug==0.14.1 # via flask
|
||||||
xmltodict==0.11.0
|
xmltodict==0.11.0
|
||||||
|
|
Loading…
Reference in New Issue