platform/plugins/Streams/classes/Streams/RelatedTo.php - Q Platform
Show:

File: platform/plugins/Streams/classes/Streams/RelatedTo.php

  1. <?php
  2. /**
  3. * @module Streams
  4. */
  5. /**
  6. * Class representing 'RelatedTo' rows in the 'Streams' database
  7. * You can create an object of this class either to
  8. * access its non-static methods, or to actually
  9. * represent a related_to row in the Streams database.
  10. *
  11. * @class Streams_RelatedTo
  12. * @extends Base_Streams_RelatedTo
  13. */
  14. class Streams_RelatedTo extends Base_Streams_RelatedTo
  15. {
  16. /**
  17. * The setUp() method is called the first time
  18. * an object of this class is constructed.
  19. * @method setUp
  20. */
  21. function setUp()
  22. {
  23. parent::setUp();
  24. }
  25. /**
  26. * @method getAllExtras
  27. * @return {array} The array of all extras set in the stream
  28. */
  29. function getAllExtras()
  30. {
  31. return empty($this->extra)
  32. ? array()
  33. : json_decode($this->extra, true);
  34. }
  35. /**
  36. * @method getExtra
  37. * @param {string} $extraName The name of the extra to get
  38. * @param {mixed} $default The value to return if the extra is missing
  39. * @return {mixed} The value of the extra, or the default value, or null
  40. */
  41. function getExtra($extraName, $default = null)
  42. {
  43. $attr = $this->getAllExtras();
  44. return isset($attr[$extraName]) ? $attr[$extraName] : $default;
  45. }
  46. /**
  47. * @method setExtra
  48. * @param {string} $extraName The name of the extra to set,
  49. * or an array of $extraName => $extraValue pairs
  50. * @param {mixed} $value The value to set the extra to
  51. * @return Streams_RelatedTo
  52. */
  53. function setExtra($extraName, $value = null)
  54. {
  55. $attr = $this->getAllExtras();
  56. if (is_array($extraName)) {
  57. foreach ($extraName as $k => $v) {
  58. $attr[$k] = $v;
  59. }
  60. } else {
  61. $attr[$extraName] = $value;
  62. }
  63. $this->extra = Q::json_encode($attr);
  64.  
  65. return $this;
  66. }
  67. /**
  68. * @method clearExtra
  69. * @param {string} $extraName The name of the extra to remove
  70. */
  71. function clearExtra($extraName)
  72. {
  73. $attr = $this->getAllExtras();
  74. unset($attr[$extraName]);
  75. $this->extra = Q::json_encode($attr);
  76. }
  77. /**
  78. * @method clearAllExtras
  79. */
  80. function clearAllExtras()
  81. {
  82. $this->extra = '{}';
  83. }
  84. /**
  85. * Fetch all the relations given multiple category streams,
  86. * and sort them by ascending weight.
  87. * @method fetchAll
  88. * @static
  89. * @param {string} $publisherId The publisher of the category streams
  90. * @param {array} $streamNames Array of criteria to put for stream names,
  91. * which can include strings, arrays, Db_Range or Db_Expression objects.
  92. * @param {string|array} $relationType The type of the relation.
  93. * Can also be an array of criteria corresponding to the $streamNames array.
  94. * @param {array} [$options=array()] Options to apss to the Streams::related function.
  95. * Can also include the following:
  96. * @param {string} [$options.asUserId] Override the default user id to fetch streams as.
  97. * Not used for now, since this function always fetches the relations only.
  98. * @return {array} An array of Streams_RelatedTo objects sorted by ascending weight.
  99. */
  100. static function fetchAll($publisherId, $streamNames, $relationType, $options = array())
  101. {
  102. $result = array();
  103. foreach ($streamNames as $i => $streamName) {
  104. $type = is_string($relationType)
  105. ? $relationType
  106. : $relationType[$i];
  107. $options['relationsOnly'] = true;
  108. $options['type'] = $type;
  109. $relations = Streams::related(
  110. Q::ifset($options, 'asUserId', null),
  111. $publisherId,
  112. $streamName,
  113. true,
  114. $options
  115. );
  116. $result = array_merge($result, $relations);
  117. }
  118. uasort($result, array('Streams_RelatedTo', '_compareByWeight'));
  119. return $result;
  120. }
  121. static function _compareByWeight($a, $b)
  122. {
  123. return ($a->weight !== $b->weight)
  124. ? ($a->weight > $b->weight ? 1 : -1)
  125. : 0;
  126. }
  127.  
  128. /**
  129. * Implements the __set_state method, so it can work with
  130. * with var_export and be re-imported successfully.
  131. * @method __set_state
  132. * @param {array} $array
  133. * @return {Streams_RelatedTo} Class instance
  134. */
  135. static function __set_state(array $array) {
  136. $result = new Streams_RelatedTo();
  137. foreach($array as $k => $v)
  138. $result->$k = $v;
  139. return $result;
  140. }
  141. };