Sha256: a2287996d4889432b9910adcf08341009c9d929c1aede37c3893694bd1d9371f

Contents?: true

Size: 1.08 KB

Versions: 15

Compression:

Stored size: 1.08 KB

Contents

# Copyright © 2012 The Pennsylvania State University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module Sufia
  module Noid
    def Noid.noidify(identifier)
      identifier.split(":").last
    end

    def Noid.namespaceize(identifier)
      if identifier.start_with?(Noid.namespace)
        identifier
      else
        "#{Noid.namespace}:#{identifier}"
      end
    end

    def noid
      Noid.noidify(self.pid)
    end

    def normalize_identifier
      params[:id] = Noid.namespaceize(params[:id])
    end

    protected
    def Noid.namespace
      Sufia.config.id_namespace
    end
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
sufia-3.1.2 sufia-models/lib/sufia/models/noid.rb
sufia-models-3.1.2 lib/sufia/models/noid.rb
sufia-3.1.1 sufia-models/lib/sufia/models/noid.rb
sufia-models-3.1.1 lib/sufia/models/noid.rb
sufia-3.1.0 sufia-models/lib/sufia/models/noid.rb
sufia-models-3.1.0 lib/sufia/models/noid.rb
sufia-3.0.0 sufia-models/lib/sufia/models/noid.rb
sufia-models-3.0.0 lib/sufia/models/noid.rb
sufia-2.0.1 sufia-models/lib/sufia/models/noid.rb
sufia-models-2.0.1 lib/sufia/models/noid.rb
sufia-2.0.0 sufia-models/lib/sufia/models/noid.rb
sufia-models-2.0.0 lib/sufia/models/noid.rb
sufia-models-0.1.2 lib/sufia/models/noid.rb
sufia-models-0.1.1 lib/sufia/models/noid.rb
sufia-models-0.1.0 lib/sufia/models/noid.rb