-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsigned_document.py
More file actions
56 lines (46 loc) · 1.76 KB
/
Copy pathsigned_document.py
File metadata and controls
56 lines (46 loc) · 1.76 KB
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Hive Omni ERP
# Copyright (c) 2008-2024 Hive Solutions Lda.
#
# This file is part of Hive Omni ERP.
#
# Hive Omni ERP is free software: you can redistribute it and/or modify
# it under the terms of the Apache License as published by the Apache
# Foundation, either version 2.0 of the License, or (at your option) any
# later version.
#
# Hive Omni ERP is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# Apache License for more details.
#
# You should have received a copy of the Apache License along with
# Hive Omni ERP. If not, see <http://www.apache.org/licenses/>.
__author__ = "João Magalhães <joamag@hive.pt>"
""" The author(s) of the module """
__copyright__ = "Copyright (c) 2008-2024 Hive Solutions Lda."
""" The copyright for the module """
__license__ = "Apache License, Version 2.0"
""" The license for the module """
import appier
from . import base
def verify_signature(identifier_prefix=None, number_records=600):
api = base.get_api()
kwargs = {}
if identifier_prefix:
kwargs["filters[]"] = "identifier_prefix:equals:%s" % identifier_prefix
if number_records:
kwargs["number_records"] = number_records
documents = api.list_signed_documents(**kwargs)
for document in documents:
object_id = document["object_id"]
result = api.verify_signed_document(object_id)
status = result.get("result", "failure")
appier.verify(
status == "success", "Failure validating document '%d'" % object_id
)
if __name__ == "__main__":
verify_signature()
else:
__path__ = []