ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ResultFormatter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
30 
31  private const N_DECIMALS = 1;
32  private const SCIENTIFIC_NOTATION_UPPER = 1000000000000;
33  private const SCIENTIFIC_NOTATION_LOWER = 0.000000001;
34  private \ilLanguage $lng;
35  private \ilObjUser $user;
36 
37  public function __construct()
38  {
39  global $DIC;
40  $this->lng = $DIC->language();
41  $this->user = $DIC->user();
42  }
43 
44  public function format(Result\Result $result): string
45  {
46  return match (true) {
47  $result instanceof Result\DateResult => $this->formatDateFromString($result),
48  $result instanceof Result\IntegerResult => $this->formatScientific($result),
49  $result instanceof Result\StringResult => $this->formatString($result),
50  default => $result->getValue()
51  };
52  }
53 
54  protected function formatString(Result\StringResult $result): string
55  {
56  return $result->getValue();
57  }
58 
59  protected function getUserDateFormat(): string
60  {
61  return (string) $this->user->getDateFormat();
62  }
63 
64  protected function formatDateFromString(Result\DateResult $result): string
65  {
66  // depending on the function, we need to format the date differently or return nothing
67  $calculated_timestamp = (int) $result->getValue();
68  switch ($result->getFromFunction()) {
69  case Functions::MAX:
70  case Functions::MIN:
71  case Functions::AVERAGE:
72  return $this->formatDateFromInt($calculated_timestamp);
73  case Functions::SUM:
74  return '';
75  }
76 
77  // depending on the operator, we need to format the date differently or return nothing
78  switch ($result->getFromOperator()) {
79  case Operators::SUBTRACTION:
80  $presentation = function ($value, $factor, $unit) {
81  return $this->formatScientific(
82  new IntegerResult((string) round($value / $factor, 0))
83  ) . ' ' . $this->lng->txt($unit);
84  };
85 
86  $prefix = '';
87  $value = (int) $calculated_timestamp;
88  if ($value < 0) {
89  $prefix = '-';
90  $value *= -1;
91  }
92 
93  switch (true) {
94  case $value < 60:
95  $value = $presentation($value, 1, 'seconds');
96  break;
97  case $value < 3600:
98  $value = $presentation($value, 60, 'minutes');
99  break;
100  case $value < 24 * 3600:
101  $value = $presentation($value, 3600, 'hours');
102  break;
103  default:
104  $value = $presentation($value, 24 * 3600, 'days');
105  break;
106  }
107  return $prefix . $value;
108  case Operators::ADDITION:
109  case Operators::MULTIPLICATION:
110  case Operators::DIVISION:
111  case Operators::POWER:
112  return ''; // currently no output for these operators
113  default:
114  return $calculated_timestamp;
115  }
116  }
117 
118  protected function formatScientific(Result\IntegerResult $result): string
119  {
120  $value = (int) $result->getValue();
121  if (abs($value) >= self::SCIENTIFIC_NOTATION_UPPER) {
122  return sprintf("%e", $value);
123  }
124  if (abs($value) <= self::SCIENTIFIC_NOTATION_LOWER && $value != 0) {
125  return sprintf("%e", $value);
126  }
127 
128  // format numbers bigger than 1000 with thousand separator
129  if (abs($value) >= 1000) {
130  if (is_float($value)) {
131  $decimals = self::N_DECIMALS;
132  } else {
133  $decimals = 0;
134  }
135  return number_format(
136  $value,
137  $decimals,
138  $this->lng->txt('lang_sep_decimal'),
139  $this->lng->txt('lang_sep_thousand')
140  );
141  }
142 
143  return (string) $value;
144  }
145 }
global $DIC
Definition: shib_login.php:22