1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
<?php
namespace Gedcomx\Extensions\FamilySearch\Rs\Client\Util;
use Gedcomx\Atom\Entry;
use Gedcomx\Atom\Feed;
use Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeObjectModifier;
use Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeObjectType;
use Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeOperation;
use ReflectionClass;
/**
* Represents a page of change histories.
*
* Class ChangeHistoryPage
*
* @package Gedcomx\Extensions\FamilySearch\Rs\Client\Util
*/
class ChangeHistoryPage extends Entry
{
private $feed;
private $entries;
/**
* Constructs a new change history page using the specified atom feed.
*
* @param \Gedcomx\Atom\Feed $feed
*/
public function __construct(Feed $feed)
{
$this->feed = $feed;
$entries = $feed->getEntries();
$changes = array();
if ($entries != null) {
/** @var $entry Entry */
foreach ($entries as $entry) {
array_push($changes, new ChangeEntry($entry));
}
}
$this->entries = $changes;
}
/**
* Gets the feed associated with this page.
*
* @return \Gedcomx\Atom\Feed
*/
public function getFeed()
{
return $this->feed;
}
/**
* Gets the collection of change entries associated with this page.
*
* @return array
*/
public function getEntries()
{
return $this->entries;
}
/**
* Searches the current page of change entries for the type of object and operation changed.
*
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeOperation $operation
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeObjectType $objectType
*
* @return null
*/
public function findChange(ChangeOperation $operation, ChangeObjectType $objectType)
{
return $this->findChangeWithModifier($operation, $objectType, null);
}
/**
* Searches the current page of change entries for the type of object and operation changed and the modifier involved.
*
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeOperation $operation
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeObjectType $objectType
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeObjectModifier $modifier
*
* @return null
*/
public function findChangeWithModifier(ChangeOperation $operation, ChangeObjectType $objectType, ChangeObjectModifier $modifier)
{
$changes = $this->findChangesBySingleWithModifier($operation, $objectType, $modifier);
return count($changes) > 0 ? $changes[0] : null;
}
/**
* Searches the current page of change entries for the type of object and operation changed.
*
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeOperation $operation
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeObjectType $objectType
*
* @return array
*/
public function findChangesBySingle(ChangeOperation $operation, ChangeObjectType $objectType)
{
$ops = array();
$types = array();
array_push($ops, $operation);
array_push($types, $objectType);
return $this->findChangesByMany($ops, $types);
}
/**
* Searches the current page of change entries for the type of object and operation changed and the modifier involved.
*
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeOperation $operation
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeObjectType $objectType
* @param \Gedcomx\Extensions\FamilySearch\Platform\Tree\ChangeObjectModifier $modifier
*
* @return array
*/
public function findChangesBySingleWithModifier(ChangeOperation $operation, ChangeObjectType $objectType, ChangeObjectModifier $modifier)
{
$modClass = new ReflectionClass('ChangeObjectModifier');
$ops = array();
$types = array();
$mods = array();
array_push($ops, $operation);
array_push($types, $objectType);
array_push($mods, $modifier);
return $this->findChangesByManyWithModifiers($ops, $types, $modifier != null ? $mods : $modClass->getConstants());
}
/**
* Searches the current page of change entries for the type of object and operation changed.
*
* @param array $operations
* @param array $types
*
* @return array
*/
public function findChangesByMany(array $operations, array $types)
{
$modClass = new ReflectionClass('ChangeObjectModifier');
return $this->findChangesByManyWithModifiers($operations, $types, $modClass->getConstants());
}
/**
* Searches the current page of change entries for the type of object and operation changed.
*
* @param array $operations
* @param array $types
* @param array $modifiers
*
* @return array
*/
public function findChangesByManyWithModifiers(array $operations, array $types, array $modifiers)
{
$changes = array();
foreach ($this->entries as $entry) {
/** @var $entry ChangeEntry */
$operation = $entry->getOperation();
$type = $entry->getObjectType();
$modifier = $entry->getObjectModifier();
if ($operation !== null && $type !== null & in_array($operation, $operations) && in_array($type, $types)) {
if ($modifier === null || in_array($modifier, $modifiers)) {
array_push($changes, $entry);
}
}
}
return $changes;
}
}