uc3-dmp-id 0.0.128 → 0.0.129

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 18be2194ff897e9c5ebca4913b8d6b10feb1ef7554d41ee7657a8785ec042ec9
4
- data.tar.gz: a4dfe517fc697e7e67a96f2f06571b7a2a9edf750de572da1a749b7cfc3b6885
3
+ metadata.gz: 2024007f975c53df4f9be8e39229ad6e4779ba792be21888853bc00ce9631715
4
+ data.tar.gz: 6cde371bb0f84552394e20aac0f9a811d72ca79495b6dd1559dc87bf70f84099
5
5
  SHA512:
6
- metadata.gz: 91805e7dddf4e6283de8c8c11398f08058fe9cb4046e59c1a7d7b72b0c783ce68ed102e8e6ac2ec79fc1e987102461f635ad07c6f09c0721c4e95420fa5165af
7
- data.tar.gz: '07680effbf1748bbcfdc528c937b0de657ceb167f5c2a714a558fb974106cdcec60141b3ede5c43b0dd722b7b19cdd3969cb31ac096a1ab31124692e18f5b842'
6
+ metadata.gz: f507041a4466514e498da66af95bbd5e404325e897655dfb15b5fc4d8de17e7c5df3f8d688048481c63283629bdabf139709329ec1d6a1b73e60e554b1427bad
7
+ data.tar.gz: 1160d4404031406cf7ddf89ed3e1e25faf74a8f2c8cb9f1c2f07290c44d2bd3bf85cadb2f56c6797275f06bc3548ef1c3f1dafd3c01baa30f81e2fe344682ebf
@@ -92,6 +92,20 @@ module Uc3DmpId
92
92
  # Publish the change to the EventBridge
93
93
  publisher = Uc3DmpEventBridge::Publisher.new
94
94
  publisher.publish(source: 'DmpCreator', dmp: json, logger: logger)
95
+
96
+ # Determine if there are any related identifiers that we should try to fetch a citation for
97
+ citable_identifiers = Helper.citable_related_identifiers(related_identifiers: json)
98
+ return true if citable_identifiers.empty?
99
+
100
+ # Process each citation individually because they can be slow to fetch
101
+ citable_identifiers.each do |identifier|
102
+ citer_detail = {
103
+ PK: json['PK'],
104
+ SK: json['SK'],
105
+ dmproadmap_related_identifier: identifier
106
+ }
107
+ publisher.publish(source: 'DmpCreator', dmp: json, event_type: 'Citation Fetch', detail: citer_detail, logger: logger)
108
+ end
95
109
  true
96
110
  end
97
111
  end
@@ -141,6 +141,20 @@ module Uc3DmpId
141
141
  # Publish the change to the EventBridge
142
142
  publisher = Uc3DmpEventBridge::Publisher.new
143
143
  publisher.publish(source: 'DmpUpdater', dmp: json, logger: logger)
144
+
145
+ # Determine if there are any related identifiers that we should try to fetch a citation for
146
+ citable_identifiers = Helper.citable_related_identifiers(related_identifiers: json)
147
+ return true if citable_identifiers.empty?
148
+
149
+ # Process each citation individually because they can be slow to fetch
150
+ citable_identifiers.each do |identifier|
151
+ citer_detail = {
152
+ PK: json['PK'],
153
+ SK: json['SK'],
154
+ dmproadmap_related_identifier: identifier
155
+ }
156
+ publisher.publish(source: 'DmpCreator', dmp: json, event_type: 'Citation Fetch', detail: citer_detail, logger: logger)
157
+ end
144
158
  true
145
159
  end
146
160
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpId
4
- VERSION = '0.0.128'
4
+ VERSION = '0.0.129'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uc3-dmp-id
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.128
4
+ version: 0.0.129
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley