Projekt

Obecné

Profil

Stáhnout (6.01 KB) Statistiky
| Větev: | Tag: | Revize:

# Datum Autor Komentář
266e1b4d 2021-05-08 09:01 Stanislav Král

Moved global error handlers out of the CertificateController to a separate file.
Renamed generic exception handlers.

d55b3aff 2021-05-08 08:47 Stanislav Král

Added a global error handler for generic exceptions.
Covered the added global exception error handler in a test.

2166bb21 2021-05-08 06:47 Stanislav Král

Added a global error handler for DatabaseException errors.
Covered the added global DatabaseException error handler in a test.

da0fc952 2021-05-08 06:37 Stanislav Král

Added a global error handler for CryptographyException errors.
Added a dependency ony pytest-mock library in order to be able to mock method calls in tests.
Covered the added global CryptographyException error handler in a test.

977845e0 2021-05-01 16:52 Stanislav Král

Re #8708 - Changed /api/certificates/{id}/identity endpoint method back to POST (facepalm)

Changed REST API tests accordingly.

7dd54fd2 2021-05-01 05:33 Stanislav Král

Re #8708 - Changed the endpoint generating PKCS12 identities to GET from POST (the generated identity is not stored on the server)

Changed the endpoint test accordingly

1d8ff0a3 2021-05-01 04:49 Stanislav Král

Re #8708 - Added a new REST API endpoint used for generating a PKCS12 identities of certificates

688c63b7 2021-04-28 09:44 Jan Pašek

Re #8707 - Logging of used config file improved

d78aa613 2021-04-28 06:24 Jan Pašek

Re #8707 - Enhanced logging to set log level based on config file

ca436714 2021-04-23 06:30 David Friesecký

Re #8570 - Logger configuration
- implemented dictionary to string in utils
- implemented log functions with parameter message only (name of file, name of class and name of function
are getting automaticaly)

48517898 2021-04-22 07:24 David Friesecký

Merge branch 'master' into 8570_Implement_logging

  1. Conflicts:
  2. src/constants.py
d23d22c9 2021-04-21 17:39 Jan Pašek

Re #8576 crl endpoint
Merge branch '8576_crl_endpoint' into 'master'
See merge request aswi/aswi-2021/aswi2021jmsd!15

b543de69 2021-04-21 15:46 Michal Seják

Re #8577 - Added endpoints for OCSP.

1bdc90c0 2021-04-21 09:55 David Friesecký

Re #8570 - Setted configuration of logging

b1fa358f 2021-04-21 06:28 Jan Pašek

Re #8576 - implemented CRL endpoint

b4607586 2021-04-19 08:36 Jan Pašek

Merge branch 'master' into 8583_interactive_details_page

  1. Conflicts:
  2. app.py
f808fd93 2021-04-16 17:50 Michal Seják

Re #8572 - Created endpoint DELETE /api/certificates/<id>, minor reformatting

780c6d9c 2021-04-16 13:47 Jan Pašek

Re #8583 - Downloading certificate keys

2cecaf70 2021-04-14 17:04 Jan Pašek

Re #8571 - Added RestAPI endpoint for revoking certificates

ce8b9aaf 2021-04-12 22:15 Stanislav Král

Re #8573 - Implemented get_private_key_of_a_certificate method in CertController and added /api/certificates/<id>/private_key endpoint

cfda1725 2021-04-12 21:28 Stanislav Král

Re #8573 - Implemented get_public_key_of_a_certificate method in CertController and added /api/certificates/<id>/public_key endpoint

2bf2b7e1 2021-04-12 21:09 Stanislav Král

Re #8573 - Removed a leftover print

61535019 2021-04-11 16:17 Stanislav Král

Renamed X509ManagementApp class and fixed application initialization when ran with gunicorn

0cf35f70 2021-04-11 14:06 Stanislav Král

Re #8579 - Added FlaskInjector dependency and used it the REST API controller

c073a0fc 2021-04-09 19:22 Jan Pašek

Re #8569 Added support for handling configuration files

81dbb479 2021-04-09 19:01 Jan Pašek

Re #8569 Checking presence of OpenSSL during init

1fa243ca 2021-04-09 18:45 Jan Pašek

Re #8569 Added application initialization and running dependency injection

2e646e3b 2021-04-07 11:38 Jan Pašek

Re #8475 - Added redirect from "/" to "/static/index.html"

aa740737 2021-04-07 00:29 Michal Seják

Re #8476 - Implemented and tested `get_cert_chain(id)`.

d53c2fdc 2021-04-06 23:58 Michal Seják

Re #8476 - Implemented and tested `get_cert_root(id)`.

5b6d9513 2021-04-06 23:44 Michal Seják

Re #8476 - Implemented and tested `get_cert_details(id)`.

fb987403 2021-04-06 22:50 Michal Seják

Re #8476 - Added and tested `get_certificate(id)`.

5b57121e 2021-04-06 22:19 Michal Seják

Re #8476 - Refactored the application; swagger is not used for code generation anymore, REST API is being implemented from scratch. Migration only, fixing tests.

750d8afa 2021-03-10 16:36 Stanislav Král

#8219 - Changed app.py in order to test CI/CG

62c3051a 2021-03-10 16:26 Stanislav Král

#8219 - Changed app.py in order to test CI/CG

9832694f 2021-03-10 08:41 Stanislav Král

#8219 - Dockerization improvements and gunicorn WSGI implementation

- when using docker to run the application nginx proxy is now used (app is then available at localhost:80)

62d64d21 2021-03-05 18:40 Stanislav Král

#8219 - CI/CD progress

fc73f187 2021-03-04 23:48 Stanislav Král

#8219 - Basic project dockerization

- created docker/Dockerfile and docker-compose.yml

6e333f54 2021-03-04 21:41 Stanislav Král

#8219 - Python & Flask project initialization with a simple index endpoint

- added auto-generated .gitignore for Python and PyCharm projects