Artefact
ArtefactView
¶
Bases: View
View for artefact records.
This view populates the artefacts resource on the Data Portal.
Source code in dataimporter/emu/views/artefact.py
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 | |
is_member(record)
¶
Filters the given record, determining whether it should be included in the artefact resource or not.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
record
|
SourceRecord
|
the record to filter |
required |
Returns:
| Type | Description |
|---|---|
FilterResult
|
a FilterResult object |
Source code in dataimporter/emu/views/artefact.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |
is_publishable(record)
¶
Filters the given record, determining whether it matches the publishing rules for the artefact resource.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
record
|
SourceRecord
|
the record to filter |
required |
Returns:
| Type | Description |
|---|---|
FilterResult
|
a FilterResult object |
Source code in dataimporter/emu/views/artefact.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | |
transform(record)
¶
Converts the record's raw data to a dict which will be the data presented on the Data Portal.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
record
|
SourceRecord
|
the record to project |
required |
Returns:
| Type | Description |
|---|---|
dict
|
a dict containing the data for this record that should be displayed on the Data Portal |
Source code in dataimporter/emu/views/artefact.py
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 | |