require 'rubygems' require 'ruby-fs-stack/fs_communicator' require 'ruby-fs-stack/fs_utils' # Including more than one enunciate library raises a warning of # already initialized constant. require 'ruby-fs-stack/warning_suppressor' with_warnings_suppressed do require 'ruby-fs-stack/enunciate/familytree' end module FamilytreeV2 # This method gets mixed into the FsCommunicator so that # you can make calls on the familytree_v2 module def familytree_v2 @familytree_v2_com ||= Communicator.new self # self at this point refers to the FsCommunicator instance end class Communicator Base = '/familytree/v2/' # ===params # fs_communicator: FsCommunicator instance def initialize(fs_communicator) @fs_communicator = fs_communicator end # ===params # id should be a string of the persons identifier. For the 'me' person, use :me or 'me' # options accepts a hash of parameters as documented by the API. # For full parameter documentation, see DevNet[https://devnet.familysearch.org/docs/api-manual-reference-system/familytree-v2/r_api_family_tree_person_read_v2.html] # # ===Example # # communicator is an authenticated FsCommunicator object # # Request a person with no assertions, only the version. # p = communicator.familytree_v2.person :me, :names => 'none', :genders => 'none', :events => 'none' # # p.version # => '90194378772' # p.id # => 'KW3B-NNM' def person(id, options = {}) id = id.to_s if id == 'me' url = Base + 'person' else url = Base + 'person/' + id end url += "?"+FsUtils.querystring_from_hash(options) unless options.empty? response = @fs_communicator.get(url) familytree = Org::Familysearch::Ws::Familytree::V2::Schema::FamilyTree.from_json JSON.parse(response.body) person = familytree.persons.find{|p| p.requestedId == id } person ||= familytree.persons.first if id == 'me' person end def save_person(person) if person.id.nil? url = Base + 'person' else url = Base + 'person/' + person.id end familytree = Org::Familysearch::Ws::Familytree::V2::Schema::FamilyTree.new familytree.persons = [person] response = @fs_communicator.post(url,familytree.to_json) res_familytree = Org::Familysearch::Ws::Familytree::V2::Schema::FamilyTree.from_json JSON.parse(response.body) person = res_familytree.persons.first return person end # ====Params # search_params - A hash of search parameters matching API doc def search(search_params) url = Base + 'search' url += "?" + FsUtils.querystring_from_hash(search_params) unless search_params.empty? response = @fs_communicator.get(url) familytree = Org::Familysearch::Ws::Familytree::V2::Schema::FamilyTree.from_json JSON.parse(response.body) # require 'pp' # pp familytree familytree.searches[0] end # ====Params # id_or_hash - Either an ID or a hash of match parameters matching API doc # hash - if the first parameter is an ID, then this will contain the hash # of match parameters. def match(id_or_hash, hash={}) url = Base + 'match' if id_or_hash.kind_of? String id = id_or_hash url += "/#{id}" params_hash = hash elsif id_or_hash.kind_of? Hash id = nil params_hash = id_or_hash else raise ArgumentError, "first parameter must be a kind of String or Hash" end url += "?" + FsUtils.querystring_from_hash(params_hash) unless params_hash.empty? response = @fs_communicator.get(url) familytree = Org::Familysearch::Ws::Familytree::V2::Schema::FamilyTree.from_json JSON.parse(response.body) # require 'pp' # pp familytree familytree.matches[0] end # ====Params # * base_id - The root person for creating the relationship # * options - Should include either :parent, :spouse, or :child. :lineage and :event is optional # # :lineage can be set to the following values: # * 'Biological' # * 'Adoptive' # * 'Foster' # * 'Guardianship' # * 'Step' # * 'Other' # # :event should be a hash with the following values # ** :type - "Marriage", etc. (REQUIRED) # ** :place - "Utah, United States" (optional) # ** :date - "Nov 2009" # # :ordinance should be a hash with the following values # ** :type - "Sealing_to_Spouse", etc. (REQUIRED) # ** :place - "Utah, United States" (optional) # ** :date - "Nov 2009" # ** :temple - 'SLAKE' # # If the :lineage is set, the parent-child relationships will be written via a characteristic. # Otherwise, an exists assertion will be created to just establish the relationship. # ====Example # # communicator.familytree_v2.write_relationship 'KWQS-BBQ', :parent => 'KWQS-BBT', :lineage => 'Biological' # communicator.familytree_v2.write_relationship 'KWQS-BBQ', :parent => 'KWQS-BBT', :lineage => 'Adoptive' # communicator.familytree_v2.write_relationship 'KWQS-BBQ', :spouse => 'KWRT-BBZ', :event => {:type => 'Marriage', :date => '15 Aug 1987', :place => 'Utah, United States'} def write_relationship(base_id,options) relationship_type = get_relationship_type(options) with_id = options[relationship_type.to_sym] url = "#{Base}person/#{base_id}/#{relationship_type}/#{with_id}" # Get the existing person/relationship or create a new person unless person = relationship(base_id,options) person = Org::Familysearch::Ws::Familytree::V2::Schema::Person.new person.id = base_id end # Add the relationship to the person with all of the correct options r_options = {:type => relationship_type, :with => with_id} r_options[:event] = options[:event] if options[:event] r_options[:ordinance] = options[:ordinance] if options[:ordinance] r_options[:lineage] = options[:lineage] if options[:lineage] person.create_relationship r_options # Create the payload familytree = Org::Familysearch::Ws::Familytree::V2::Schema::FamilyTree.new familytree.persons = [person] # Post the response and return the resulting person/relationship record from response response = @fs_communicator.post(url,familytree.to_json) res_familytree = Org::Familysearch::Ws::Familytree::V2::Schema::FamilyTree.from_json JSON.parse(response.body) person = res_familytree.persons.first return person end # ====Params # * base_id - The root person for creating the relationship # * options - Should include either :parent, :spouse, or :child. :lineage and :event is optional # # If the :lineage is set, the parent-child relationships will be written via a characteristic. # Otherwise, an exists assertion will be created to just establish the relationship. # ====Example # # communicator.familytree_v2.relationship 'KWQS-BBQ', :parent => 'KWQS-BBT' # communicator.familytree_v2.relationship 'KWQS-BBQ', :parent => 'KWQS-BBT' def relationship(base_id,options) r_type = get_relationship_type(options) with_id = options[r_type.to_sym] url = "#{Base}person/#{base_id}/#{r_type}/#{with_id}" res = @fs_communicator.get(url) if res.code == '404' return nil else familytree = Org::Familysearch::Ws::Familytree::V2::Schema::FamilyTree.from_json JSON.parse(res.body) person = familytree.persons.find{|p|p.id == base_id} return person end end private #options will either have a :parent, :child, or :spouse key. We need to find which one def get_relationship_type(options) keys = options.keys.collect{|k|k.to_s} key = keys.find{|k| ['parent','child','spouse'].include? k} key end end end # Mix in the module so that the fs_familytree_v1 can be called class FsCommunicator include FamilytreeV2 end module Org::Familysearch::Ws::Familytree::V2::Schema class GenderAssertion def add_value(value) self.value = GenderValue.new self.value.type = value end end class NameForm def set_name(name) split_pieces = name.match(/(.*)\/(.*)\//) # if there is a name like John Jacob /Felch/, split to name pieces, otherwise use fullText if split_pieces given_pieces = split_pieces[1] family_pieces = split_pieces[2] self.pieces = given_pieces.split(" ").collect do |piece| p = NamePiece.new p.type = "Given" p.postdelimiters = " " p.value = piece p end self.pieces = self.pieces + family_pieces.split(" ").collect do |piece| p = NamePiece.new p.type = "Family" p.predelimiters = "" p.value = piece p end else self.fullText = name end end def buildFullText if self.pieces.nil? return '' else self.pieces.collect{|piece| "#{piece.predelimiters}#{piece.value}#{piece.postdelimiters}"}.join('') end end end class NameValue def add_form(value) self.forms = [] f = NameForm.new f.set_name(value) self.forms << f end end class NameAssertion def add_value(value) self.value = NameValue.new self.value.add_form(value) end end class EventValue def add_date(value) self.date = GenDate.new self.date.original = value end def add_place(value) self.place = Place.new self.place.original = value end end class EventAssertion # ====Params # * options - requires a :type option and accepts an (optional) :date and :place option # # ====Example # # person.add_birth :date => '12 Aug 1902', :place => 'United States' def add_value(options) raise ArgumentError, "missing option[:type]" if options[:type].nil? self.value = EventValue.new self.value.type = options[:type] self.value.add_date(options[:date]) if options[:date] self.value.add_place(options[:place]) if options[:place] end # To make porting code from v1 to v2 easier, date will reference # value.date def date value.date end # To make porting code from v1 to v2 easier, date will reference # value.date def place value.place end end class OrdinanceValue def add_date(value) self.date = GenDate.new self.date.original = value end def add_place(value) self.place = Place.new self.place.original = value end def add_mother(mother_id) add_parent('Female',mother_id) end def add_father(father_id) add_parent('Male',father_id) end def add_parent(gender, id) add_parents! parent = PersonReference.new parent.id = id parent.gender = gender self.parents << parent end private def add_parents! self.parents ||= [] end end class OrdinanceAssertion def add_value(options) raise ArgumentError, "missing option[:type]" if options[:type].nil? raise ArgumentError, "missing option[:place]" if options[:place].nil? self.value = OrdinanceValue.new self.value.type = options[:type] self.value.add_date(options[:date]) if options[:date] self.value.add_place(options[:place]) if options[:place] self.value.temple = options[:temple] if options[:temple] if options[:type] == OrdinanceType::Sealing_to_Parents self.value.add_mother(options[:mother]) self.value.add_father(options[:father]) end end end class PersonAssertions def add_gender(value) self.genders ||= [] g = GenderAssertion.new g.add_value(value) self.genders << g end def add_name(value) self.names ||= [] n = NameAssertion.new n.add_value(value) self.names << n end def add_event(options) self.events ||= [] e = EventAssertion.new e.add_value(options) self.events << e end def add_ordinance(options) self.ordinances ||= [] o = OrdinanceAssertion.new o.add_value(options) self.ordinances << o end end class CharacteristicAssertion # ====Params # * options - same as RelationshipAssertions#add_characteristic def add_value(options) self.value = CharacteristicValue.new self.value.type = options[:type] self.value.lineage = options[:lineage] if options[:lineage] end end class ExistsAssertion def add_value self.value = ExistsValue.new end end class RelationshipAssertions # ====Params # * options - :type ('Lineage' or valid CharacteristicType), :lineage => 'Biological', etc. def add_characteristic(options) self.characteristics ||= [] characteristic = CharacteristicAssertion.new characteristic.add_value(options) self.characteristics << characteristic end # ====Params # * options - Accepts the following options # ** :type - 'Marriage', etc. REQUIRED # ** :date - 'Utah, United States' (optional) # ** :place - '16 Nov 1987' (optional) def add_event(options) self.events ||= [] event = EventAssertion.new event.add_value(options) self.events << event end # ====Params # * options - Accepts the following options # ** :type - 'Sealing_to_Spouse', etc. REQUIRED # ** :date - 'Utah, United States' (optional) # ** :place - '16 Nov 1987' (optional) # ** :temple - 'SLAKE' def add_ordinance(options) self.ordinances ||= [] ordinance = OrdinanceAssertion.new ordinance.add_value(options) self.ordinances << ordinance end def add_exists self.exists ||= [] exist = ExistsAssertion.new exist.add_value self.exists << exist end end class Relationship def add_lineage_characteristic(lineage) add_assertions! self.assertions.add_characteristic(:type => 'Lineage', :lineage => lineage) end def add_exists add_assertions! self.assertions.add_exists end # ====Params # * event_hash - Accepts the following options # ** :type - 'Marriage', etc. REQUIRED # ** :date - 'Utah, United States' (optional) # ** :place - '16 Nov 1987' (optional) def add_event(event_hash) add_assertions! self.assertions.add_event(event_hash) end # ====Params # * ordinance_hash - Accepts the following options # ** :type - 'Sealing_to_Spouse', etc. REQUIRED # ** :date - 'Utah, United States' (optional) # ** :place - '16 Nov 1987' (optional) # ** :temple - 'SLAKE' def add_ordinance(ordinance_hash) add_assertions! self.assertions.add_ordinance(ordinance_hash) end private def add_assertions! self.assertions ||= RelationshipAssertions.new end end class PersonRelationships def initialize @parents = [] @spouses = [] @children = [] end # ====Params # * options - requires the following: # ** :type - 'parent', 'child', 'spouse' # ** :with - ID of the person with whom you are making the relationship # ** :lineage (optional) - 'Biological', 'Adoptive', etc. # ** :event - a hash with values {:type => 'Marriage', :date => '15 Nov 2007', :place => 'Utah, United States'} # ** :ordinance - a hash with values {:date => '15 Nov 2007', :temple => 'SLAKE', :place => 'Utah, United States', :type => "Sealing_to_Spouse"} def add_relationship(options) g_command = get_command(options[:type]) relationship = self.send(g_command.to_sym).find{|r|r.id == options[:with]} if relationship.nil? relationship = Relationship.new relationship.id = options[:with] end if options[:lineage] relationship.add_lineage_characteristic(options[:lineage]) if options[:lineage] else relationship.add_exists end if options[:event] relationship.add_event(options[:event]) end if options[:ordinance] relationship.add_ordinance(options[:ordinance]) end s_command = set_command(options[:type]) self.send(s_command.to_sym,[relationship]) end # Overriding the Enunciate code because of a bug (parents, spouses, and children were not pluralized) # the json hash for this PersonRelationships def to_jaxb_json_hash _h = {} if !parents.nil? _ha = Array.new parents.each { | _item | _ha.push _item.to_jaxb_json_hash } _h['parents'] = _ha end if !spouses.nil? _ha = Array.new spouses.each { | _item | _ha.push _item.to_jaxb_json_hash } _h['spouses'] = _ha end if !children.nil? _ha = Array.new children.each { | _item | _ha.push _item.to_jaxb_json_hash } _h['children'] = _ha end return _h end # Overriding the Enunciate code because of a bug #initializes this PersonRelationships with a json hash def init_jaxb_json_hash(_o) if !_o['parents'].nil? @parents = Array.new _oa = _o['parents'] _oa.each { | _item | @parents.push Org::Familysearch::Ws::Familytree::V2::Schema::Relationship.from_json(_item) } end if !_o['spouses'].nil? @spouses = Array.new _oa = _o['spouses'] _oa.each { | _item | @spouses.push Org::Familysearch::Ws::Familytree::V2::Schema::Relationship.from_json(_item) } end if !_o['children'].nil? @children = Array.new _oa = _o['children'] _oa.each { | _item | @children.push Org::Familysearch::Ws::Familytree::V2::Schema::Relationship.from_json(_item) } end end private def get_command(type) (type == 'child') ? 'children' : "#{type}s" end def set_command(type) get_command(type)+"=" end end class Person def full_names if assertions && assertions.names return assertions.names.collect do |name| (name.value.forms[0].fullText.nil?) ? name.value.forms[0].buildFullText : name.value.forms[0].fullText end else [] end end def full_name self.full_names.first end def gender if assertions && assertions.genders && assertions.genders[0] && assertions.genders[0].value assertions.genders[0].value.type else nil end end # Convenience method for adding the gender. # # ====Params # value - 'Male' or 'Female' def add_gender(value) add_assertions! assertions.add_gender(value) end # Convenience method for adding a name. It fills in the necessary # structure underneath to create the name. # # ====Params # value - the name to be added # # ====Example # # person.add_name 'Parker Felch' # Sets the fullText to "Parker Felch" # person.add_name 'Parker Jones /Felch/' # Does not set the fullText, but sets the name pieces. def add_name(value) add_assertions! assertions.add_name(value) end def births select_events('Birth') end # It should return the selected birth assertion unless it is # not set in which case it will return the first def birth birth = births.find{|b|!b.selected.nil?} birth ||= births[0] birth end def deaths select_events('Death') end # It should return the selected death assertion unless it is # not set in which case it will return the first def death death = deaths.find{|b|!b.selected.nil?} death ||= deaths[0] death end # Add an event with type of Birth # # ====Params # * options - accepts a :date and :place option # # ====Example # # person.add_birth :date => '12 Aug 1902', :place => 'United States' def add_birth(options) add_assertions! options[:type] = 'Birth' assertions.add_event(options) end # Add an event with type of Birth # # ====Params # * options - accepts a :date and :place option # # ====Example # # person.add_birth :date => '12 Aug 1902', :place => 'United States' def add_death(options) add_assertions! options[:type] = 'Death' assertions.add_event(options) end def baptisms select_ordinances('Baptism') end def confirmations select_ordinances('Confirmation') end def initiatories select_ordinances('Initiatory') end def endowments select_ordinances('Endowment') end def sealing_to_parents select_ordinances(OrdinanceType::Sealing_to_Parents) end def sealing_to_spouses(id) select_relationship_ordinances(:relationship_type => 'spouse', :id => id, :type => OrdinanceType::Sealing_to_Spouse) end # Add a baptism ordinance # # ====Params # * options - accepts a :date, :place, and :temple option # # ====Example # # person.add_baptism :date => '14 Aug 2009', :temple => 'SGEOR', :place => 'Salt Lake City, Utah' def add_baptism(options) add_assertions! options[:type] = 'Baptism' assertions.add_ordinance(options) end # Add a confirmation ordinance # # ====Params # * options - accepts a :date, :place, and :temple option # # ====Example # # person.add_confirmation :date => '14 Aug 2009', :temple => 'SGEOR', :place => 'Salt Lake City, Utah' def add_confirmation(options) add_assertions! options[:type] = 'Confirmation' assertions.add_ordinance(options) end # Add a initiatory ordinance # # ====Params # * options - accepts a :date, :place, and :temple option # # ====Example # # person.add_initiatory :date => '14 Aug 2009', :temple => 'SGEOR', :place => 'Salt Lake City, Utah' def add_initiatory(options) add_assertions! options[:type] = 'Initiatory' assertions.add_ordinance(options) end # Add a endowment ordinance # # ====Params # * options - accepts a :date, :place, and :temple option # # ====Example # # person.add_endowment :date => '14 Aug 2009', :temple => 'SGEOR', :place => 'Salt Lake City, Utah' def add_endowment(options) add_assertions! options[:type] = 'Endowment' assertions.add_ordinance(options) end # Add a sealing to parents ordinance # # ====Params # * options - accepts a :date, :place, :temple, :mother, and :father option # # ====Example # # person.add_sealing_to_parents :date => '14 Aug 2009', :temple => 'SGEOR', :place => 'Salt Lake City, Utah' def add_sealing_to_parents(options) raise ArgumentError, ":mother option is required" if options[:mother].nil? raise ArgumentError, ":father option is required" if options[:father].nil? add_assertions! options[:type] = OrdinanceType::Sealing_to_Parents assertions.add_ordinance(options) end # This method should really only be called from FamilytreeV2::Communicator#write_relationships # # ====Params # * options - requires the following: # ** :type - 'parent', 'child', 'spouse' # ** :with - ID of the person with whom you are making the relationship # ** :lineage (optional) - 'Biological', 'Adoptive', etc. # ** :event - a hash with values {:type => 'Marriage', :date => '15 Nov 2007', :place => 'Utah, United States'} def create_relationship(options) raise ArgumentError, ":type option is required" if options[:type].nil? raise ArgumentError, ":with option is required" if options[:with].nil? add_relationships! self.relationships.add_relationship(options) end private def add_relationships! self.relationships ||= PersonRelationships.new end def add_assertions! if assertions.nil? self.assertions = PersonAssertions.new end end def select_events(type) if assertions && assertions.events assertions.events.select{|e| e.value.type == type} else [] end end def select_ordinances(type) if assertions && assertions.ordinances assertions.ordinances.select{|e| e.value.type == type} else [] end end # only ordinance type is Sealing_to_Spouse def select_relationship_ordinances(options) raise ArgumentError, ":id required" if options[:id].nil? if self.relationships spouse_relationship = self.relationships.spouses.find{|s|s.id == options[:id]} if spouse_relationship && spouse_relationship.assertions && spouse_relationship.assertions.ordinances spouse_relationship.assertions.ordinances else [] end end end end class SearchPerson alias :name :full_name alias :ref :id def events (assertions && assertions.events) ? assertions.events : [] end # Always will return nil. Method is here for v1 backwards compatibility def marriage nil end end class SearchResult alias :ref :id def father parents.find{|p|p.gender == 'Male'} end def mother parents.find{|p|p.gender == 'Female'} end end end