No commit activity in last 3 years
No release in over 3 years
A mixin library for ActiveFedora. Realtion methods operating against the FCRepo object search terms (DCES elements and object properties).
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 0.10.5
>= 0
>= 2.9.0
>= 0

Runtime

 Project Readme

ActiveFedora::Finders

A mixin to allow use of dynamic finder methods (a la Rails) with ActiveFedora. These methods operate against the FCRepo Object Search.
Allowed fields are the 15 DCES metadata fields, and the FCRepo object properties, ie:

SINGLE_VALUE_FIELDS = [:pid, :cDate, :mDate, :label]
SYSTEM_FIELDS = SINGLE_VALUE_FIELDS.concat [:ownerId]
DC_FIELDS = [:contributor, :coverage, :creator, :date, :description, :format,
:identifier, :language, :publisher, :relation, :rights, :source,
:subject, :title, :type ]
SUPPORTED_ALTS = [:cdate, :create_date, :mdate, :modified_date, :owner_id]

Example:

class MyModel < ActiveFedora::Base
include ActiveFedora::RepositoryQuerying
end

obj = MyModel.search_repo(pid: “fedora-system:ContentModel-3.0”).first!

**

Roadmap:

0.1: dynamic finders, bang support
0.2 rubydora 1.x
0.3: Rubydora 1.0…2.0
0.4: AF 6.7+
0.5: Rails 4 and Hydra 7
0.6: support or_create|initialize
0.7: support _all and _last
0.8: support scopes