. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Google; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Statistics\AbstractGoogle; use Fisharebest\Webtrees\Statistics\Helper\Century; use Fisharebest\Webtrees\Tree; use Illuminate\Database\Capsule\Manager as DB; use Illuminate\Database\Query\JoinClause; /** * */ class ChartAge extends AbstractGoogle { /** * @var Tree */ private $tree; /** * @var Century */ private $centuryHelper; /** * Constructor. * * @param Tree $tree */ public function __construct(Tree $tree) { $this->tree = $tree; $this->centuryHelper = new Century(); } /** * Returns the related database records. * * @return \stdClass[] */ private function queryRecords(): array { $prefix = DB::connection()->getTablePrefix(); return DB::table('individuals') ->join('dates AS birth', function (JoinClause $join): void { $join ->on('birth.d_file', '=', 'i_file') ->on('birth.d_gid', '=', 'i_id'); }) ->join('dates AS death', function (JoinClause $join): void { $join ->on('death.d_file', '=', 'i_file') ->on('death.d_gid', '=', 'i_id'); }) ->where('i_file', '=', $this->tree->id()) ->where('birth.d_fact', '=', 'BIRT') ->where('death.d_fact', '=', 'DEAT') ->whereIn('birth.d_type', ['@#DGREGORIAN@', '@#DJULIAN@']) ->whereIn('death.d_type', ['@#DGREGORIAN@', '@#DJULIAN@']) ->whereColumn('death.d_julianday1', '>=', 'birth.d_julianday2') ->where('birth.d_julianday2', '<>', 0) ->select([ DB::raw('ROUND(AVG(' . $prefix . 'death.d_julianday2 - ' . $prefix . 'birth.d_julianday1) / 365.25,1) AS age'), DB::raw('ROUND((' . $prefix . 'death.d_year - 50) / 100) AS century'), 'i_sex AS sex' ]) ->groupBy(['century', 'sex']) ->orderBy('century') ->orderBy('sex') ->get() ->all(); } /** * General query on ages. * * @param string $size * * @return string */ public function chartAge(string $size = '230x250'): string { $sizes = explode('x', $size); $rows = $this->queryRecords(); if (empty($rows)) { return ''; } $chxl = '0:|'; $countsm = ''; $countsf = ''; $countsa = ''; $out = []; foreach ($rows as $values) { $out[(int) $values->century][$values->sex] = $values->age; } foreach ($out as $century => $values) { if ($sizes[0] < 980) { $sizes[0] += 50; } $chxl .= $this->centuryHelper->centuryName($century) . '|'; $female_age = $values['F'] ?? 0; $male_age = $values['M'] ?? 0; $average_age = $female_age + $male_age; if ($female_age > 0 && $male_age > 0) { $average_age /= 2.0; } $countsf .= $female_age . ','; $countsm .= $male_age . ','; $countsa .= $average_age . ','; } $countsm = substr($countsm, 0, -1); $countsf = substr($countsf, 0, -1); $countsa = substr($countsa, 0, -1); $chd = 't2:' . $countsm . '|' . $countsf . '|' . $countsa; $decades = ''; for ($i = 0; $i <= 100; $i += 10) { $decades .= '|' . I18N::number($i); } $chxl .= '1:||' . I18N::translate('century') . '|2:' . $decades . '|3:||' . I18N::translate('Age') . '|'; $title = I18N::translate('Average age related to death century'); if (\count($rows) > 6 || mb_strlen($title) < 30) { $chtt = $title; } else { $offset = 0; $counter = []; while ($offset = strpos($title, ' ', $offset + 1)) { $counter[] = $offset; } $half = intdiv(\count($counter), 2); $chtt = substr_replace($title, '|', $counter[$half], 1); } $chart_url = 'https://chart.googleapis.com/chart?cht=bvg&chs=' . $sizes[0] . 'x' . $sizes[1] . '&chm=D,FF0000,2,0,3,1|N*f1*,000000,0,-1,11,1|N*f1*,000000,1,-1,11,1&chf=bg,s,ffffff00|c,s,ffffff00&chtt=' . rawurlencode($chtt) . '&chd=' . $chd . '&chco=0000FF,FFA0CB,FF0000&chbh=20,3&chxt=x,x,y,y&chxl=' . rawurlencode($chxl) . '&chdl=' . rawurlencode(I18N::translate('Males') . '|' . I18N::translate('Females') . '|' . I18N::translate('Average age at death')); return view( 'statistics/other/chart-google', [ 'chart_title' => I18N::translate('Average age related to death century'), 'chart_url' => $chart_url, 'sizes' => $sizes, ] ); } }