-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSPY-491 - RSPY-492 - RSPY-495 - RSPY-506 - RSPY-507 - CADIP/AUXIP fixes #687
Changes from 1 commit
7941451
1dabd77
86836e8
abcfef9
d682b21
7bf98ee
1fced09
71cd269
dee088f
a878146
6b42aed
7a3d369
3572e44
50bdf7a
9713d4e
5cf7b1e
4aae9d7
8addaea
daee5a0
debcff4
2e1cf14
52a7880
8f8cb16
11a408d
9030f33
0c8a083
8415361
16af110
04b3d5f
5db871d
86f93df
3db8a48
812a185
efc446c
693c199
bfd2754
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ template: | |
type: ODataV4Search | ||
api_endpoint: | ||
need_auth: true | ||
results_entry: responses | $ | ||
results_entry: $.value | ||
metadata_mapping: | ||
id: | ||
- null | ||
|
@@ -107,9 +107,36 @@ template: | |
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'platformShortName' and att/OData.CSC.StringAttribute/Value eq '{attr_platform_short_name}')" | ||
- "Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'processingDate' and att/OData.CSC.StringAttribute/Value eq '{attr_processing_date#to_iso_utc_datetime}')" | ||
|
||
sort: | ||
sort_by_tpl: '&$orderby={sort_param} {sort_order}' | ||
sort_param_mapping: | ||
id: Name | ||
auxip:id: Id | ||
created: PublicationDate | ||
#datetime: Start # How to access ContentDate['Start']? | ||
#start_datetime: Start | ||
end_datetime: End | ||
file:size: ContentLength | ||
type: ContentType | ||
eviction_datetime: EvictionDate | ||
#product:type: productType | ||
#processing:datetime: processingDate | ||
published: PublicationDate | ||
#file:checksum: ChecksumValue | ||
#platform: platformSerialIdentifier | ||
#constellation: platformShortName | ||
#processing:facility: processingCenter | ||
startTimeFromAscendingNode: ContentDate.Start | ||
completionTimeFromAscendingNode: ContentDate.Stop | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I made a mistake it's a slash: ContentDate/Stop. I do the remark only once but there are more occurrences to fix |
||
publicationDate: PublicationDate | ||
sort_order_mapping: | ||
ascending: asc | ||
descending: desc | ||
max_sort_params: 1 | ||
|
||
pagination: | ||
max_items_per_page: 1000 | ||
next_page_url_tpl: "{url}?{search}&$top={items_per_page}&$expand=Attributes" | ||
next_page_url_tpl: "{url}?{search}&$top={items_per_page}&$skip={skip}&$expand=Attributes" | ||
total_items_nb_key_path: "$.total" | ||
|
||
download: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,7 +101,7 @@ adgs: | |
free_text_search_operations: | ||
$filter: | ||
union: ' OR ' | ||
wrapper: '{}' | ||
wrapper: '"{}"' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no, it must be without quotes. I do the remark only once but there are more occurrences to fix |
||
operations: | ||
and: | ||
- contains(Name, '{Name}') | ||
|
@@ -115,22 +115,28 @@ adgs: | |
and att/OData.CSC.StringAttribute/Value eq '{attr_platform_short_name}') | ||
- Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'processingDate' | ||
and att/OData.CSC.StringAttribute/Value eq '{attr_processing_date#to_iso_utc_datetime}') | ||
pagination: | ||
max_items_per_page: 1000 | ||
next_page_url_tpl: '{url}?{search}&$top={items_per_page}&$expand=Attributes' | ||
total_items_nb_key_path: '$.total' | ||
|
||
sort: | ||
sort_by_tpl: '&$orderby={sort_param} {sort_order}' | ||
sort_param_mapping: | ||
id: Name | ||
auxip:id: Id | ||
created: PublicationDate | ||
end_datetime: End | ||
file:size: ContentLength | ||
type: ContentType | ||
eviction_datetime: EvictionDate | ||
published: PublicationDate | ||
startTimeFromAscendingNode: ContentDate.Start | ||
completionTimeFromAscendingNode: ContentDate.Stop | ||
publicationDate: PublicationDate | ||
sort_order_mapping: | ||
ascending: asc | ||
descending: desc | ||
max_sort_params: 1 | ||
|
||
pagination: | ||
max_items_per_page: 1000 | ||
next_page_url_tpl: '{url}?{search}&$top={items_per_page}&$skip={skip}&$expand=Attributes' | ||
total_items_nb_key_path: $.total | ||
download: | ||
type: HTTPDownload | ||
base_uri: http://127.0.0.1:5000/Products | ||
|
@@ -221,7 +227,7 @@ adgs2: | |
free_text_search_operations: | ||
$filter: | ||
union: ' OR ' | ||
wrapper: '{}' | ||
wrapper: '"{}"' | ||
operations: | ||
and: | ||
- contains(Name, '{Name}') | ||
|
@@ -235,22 +241,28 @@ adgs2: | |
and att/OData.CSC.StringAttribute/Value eq '{attr_platform_short_name}') | ||
- Attributes/OData.CSC.StringAttribute/any(att:att/Name eq 'processingDate' | ||
and att/OData.CSC.StringAttribute/Value eq '{attr_processing_date#to_iso_utc_datetime}') | ||
pagination: | ||
max_items_per_page: 1000 | ||
next_page_url_tpl: '{url}?{search}&$top={items_per_page}&$expand=Attributes' | ||
total_items_nb_key_path: '$.total' | ||
|
||
sort: | ||
sort_by_tpl: '&$orderby={sort_param} {sort_order}' | ||
sort_param_mapping: | ||
id: Name | ||
auxip:id: Id | ||
created: PublicationDate | ||
end_datetime: End | ||
file:size: ContentLength | ||
type: ContentType | ||
eviction_datetime: EvictionDate | ||
published: PublicationDate | ||
startTimeFromAscendingNode: ContentDate.Start | ||
completionTimeFromAscendingNode: ContentDate.Stop | ||
publicationDate: PublicationDate | ||
sort_order_mapping: | ||
ascending: asc | ||
descending: desc | ||
max_sort_params: 1 | ||
|
||
pagination: | ||
max_items_per_page: 1000 | ||
next_page_url_tpl: '{url}?{search}&$top={items_per_page}&$skip={skip}&$expand=Attributes' | ||
total_items_nb_key_path: $.total | ||
download: | ||
type: HTTPDownload | ||
base_uri: http://127.0.0.1:5001/Products | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made a mistake it's a slash: ContentDate/Start. I do the remark only once but there are more occurrences to fix