|
@@ -1,6 +1,6 @@
|
|
import logging
|
|
import logging
|
|
|
|
|
|
-from flask import Blueprint, render_template
|
|
|
|
|
|
+from flask import Blueprint, jsonify, render_template
|
|
|
|
|
|
from lakesuperior.api import admin as admin_api
|
|
from lakesuperior.api import admin as admin_api
|
|
from lakesuperior.exceptions import (
|
|
from lakesuperior.exceptions import (
|
|
@@ -59,6 +59,7 @@ def fixity_check(uid):
|
|
Check the fixity of a resource.
|
|
Check the fixity of a resource.
|
|
"""
|
|
"""
|
|
uid = '/' + uid.strip('/')
|
|
uid = '/' + uid.strip('/')
|
|
|
|
+
|
|
try:
|
|
try:
|
|
admin_api.fixity_check(uid)
|
|
admin_api.fixity_check(uid)
|
|
except ResourceNotExistsError as e:
|
|
except ResourceNotExistsError as e:
|
|
@@ -66,6 +67,16 @@ def fixity_check(uid):
|
|
except TombstoneError as e:
|
|
except TombstoneError as e:
|
|
return str(e), 410
|
|
return str(e), 410
|
|
except ChecksumValidationError as e:
|
|
except ChecksumValidationError as e:
|
|
- return str(e), 412
|
|
|
|
-
|
|
|
|
- return f'Checksum for {uid} passed.', 200
|
|
|
|
|
|
+ check_pass = False
|
|
|
|
+ else:
|
|
|
|
+ check_pass = True
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ return (
|
|
|
|
+ jsonify({
|
|
|
|
+ 'uid': uid,
|
|
|
|
+ 'pass': check_pass,
|
|
|
|
+ }),
|
|
|
|
+ 200,
|
|
|
|
+ {'content-type': 'application/json'}
|
|
|
|
+ )
|