• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pulibrary / pdc_describe / 9cddc8c7-6fdb-4485-861e-31fa48956593

pending completion
9cddc8c7-6fdb-4485-861e-31fa48956593

Pull #900

circleci

mccalluc
Updates in form come through
Pull Request #900: Suppport organizational contributors

77 of 77 new or added lines in 6 files covered. (100.0%)

1818 of 1836 relevant lines covered (99.02%)

170.35 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

82.14
/app/models/pdc_metadata/name_identifier.rb
1
# frozen_string_literal: true
2
# Class for storing a named identifier for the creator in our local representation.  This identifier can be a person or organization.
3
# **Please Note:**
4
# The class name NameIdentifier is being utilized becuase it matches with the DataCite Schema: https://support.datacite.org/docs/datacite-metadata-schema-v44-mandatory-properties#24-nameidentifier
5
# It also matches with the DaCite xml mapping gem that we are utilizing: https://github.com/CDLUC3/datacite-mapping/blob/master/lib/datacite/mapping/name_identifier.rb
6
module PDCMetadata
1✔
7
  # value:      "0000-0001-5000-0007"
8
  # scheme:     "ORCID"
9
  # scheme_uri: "https://orcid.org/""
10
  class NameIdentifier
1✔
11
    attr_accessor :value, :scheme, :scheme_uri
1✔
12
    def initialize(value: nil, scheme: nil, scheme_uri: nil)
1✔
13
      @value = value
68✔
14
      @scheme = scheme
68✔
15
      @scheme_uri = scheme_uri
68✔
16
    end
17

18
    ORCID = "ORCID"
1✔
19
    ROR = "ROR"
1✔
20

21
    def orcid_url
1✔
22
      return nil unless scheme == ORCID
1✔
23
      url
1✔
24
    end
25

26
    def orcid
1✔
27
      return nil unless scheme == ORCID
41✔
28
      value
41✔
29
    end
30

31
    def ror_url
1✔
32
      return nil unless scheme == ROR
×
33
      url
×
34
    end
35

36
    def ror
1✔
37
      return nil unless scheme == ROR
×
38
      value
×
39
    end
40

41
    def self.new_orcid(value)
1✔
42
      NameIdentifier.new(value: value, scheme: "ORCID", scheme_uri: "https://orcid.org")
68✔
43
    end
44

45
    def self.new_ror(value)
1✔
46
      NameIdentifier.new(value: value, scheme: "ROR", scheme_uri: "https://ror.org")
×
47
    end
48

49
    private
1✔
50

51
      def url
1✔
52
        "#{scheme_uri}/#{value}"
1✔
53
      end
54
  end
55
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc