adrema/app/Contribution/Documents/DvDocument.php

129 lines
3.0 KiB
PHP
Raw Normal View History

2022-08-23 23:49:19 +02:00
<?php
2022-11-17 21:47:45 +01:00
namespace App\Contribution\Documents;
2022-08-23 23:49:19 +02:00
use App\Country;
use App\Member\Member;
use Carbon\Carbon;
2023-02-17 18:57:11 +01:00
use Illuminate\Support\Collection;
2022-11-07 16:18:11 +01:00
use Zoomyboy\Tex\Engine;
use Zoomyboy\Tex\Template;
2022-08-23 23:49:19 +02:00
2022-11-17 21:47:45 +01:00
class DvDocument extends ContributionDocument
2022-08-23 23:49:19 +02:00
{
2023-02-17 18:57:11 +01:00
/**
* @param Collection<int, Collection<int, Member>> $members
*/
2022-08-23 23:49:19 +02:00
public function __construct(
public string $dateFrom,
public string $dateUntil,
public string $zipLocation,
public ?Country $country,
2022-11-07 16:18:11 +01:00
public Collection $members,
2022-08-23 23:49:19 +02:00
public ?string $filename = '',
2022-10-30 16:27:51 +01:00
public string $type = 'F',
2022-08-23 23:49:19 +02:00
) {
}
2022-11-07 16:18:11 +01:00
public function dateRange(): string
{
return Carbon::parse($this->dateFrom)->format('d.m.Y')
.' - '
.Carbon::parse($this->dateUntil)->format('d.m.Y');
}
2023-03-09 02:14:24 +01:00
/**
* @param array<string, string|int> $request
*/
public static function fromRequest(array $request): self
2022-08-23 23:49:19 +02:00
{
return new self(
2023-03-09 02:14:24 +01:00
dateFrom: $request['dateFrom'],
dateUntil: $request['dateUntil'],
zipLocation: $request['zipLocation'],
country: Country::where('id', $request['country'])->firstOrFail(),
members: Member::whereIn('id', $request['members'])->orderByRaw('lastname, firstname')->get()->toBase()->chunk(17),
2022-08-23 23:49:19 +02:00
);
}
2022-11-07 16:18:11 +01:00
public function countryName(): string
2022-08-23 23:49:19 +02:00
{
2022-11-07 16:18:11 +01:00
return $this->country->name;
2022-08-23 23:49:19 +02:00
}
public function memberShort(Member $member): string
{
return $member->isLeader() ? 'L' : '';
}
public function memberName(Member $member): string
{
return $member->lastname.', '.$member->firstname;
}
public function memberAddress(Member $member): string
{
return $member->fullAddress;
}
public function memberGender(Member $member): string
{
if (!$member->gender) {
return '';
}
return strtolower(substr($member->gender->name, 0, 1));
}
public function memberAge(Member $member): string
{
return (string) $member->getAge();
}
2022-11-07 16:18:11 +01:00
public function basename(): string
2022-08-23 23:49:19 +02:00
{
return 'zuschuesse-dv';
}
2022-11-07 16:18:11 +01:00
public function view(): string
2022-08-23 23:49:19 +02:00
{
return 'tex.zuschuss-dv';
}
2022-11-07 16:18:11 +01:00
public function template(): Template
2022-08-23 23:49:19 +02:00
{
2022-11-07 16:18:11 +01:00
return Template::make('tex.templates.contribution');
2022-08-23 23:49:19 +02:00
}
public function setFilename(string $filename): static
{
$this->filename = $filename;
return $this;
}
2022-11-07 16:18:11 +01:00
public function getEngine(): Engine
2022-08-23 23:49:19 +02:00
{
2022-11-07 16:18:11 +01:00
return Engine::PDFLATEX;
2022-08-23 23:49:19 +02:00
}
2022-11-17 21:47:45 +01:00
public static function getName(): string
{
return 'Für DV erstellen';
}
/**
* @return array<string, mixed>
*/
public static function rules(): array
{
return [
'dateFrom' => 'required|string|date_format:Y-m-d',
'dateUntil' => 'required|string|date_format:Y-m-d',
'country' => 'required|integer|exists:countries,id',
'zipLocation' => 'required|string',
'eventName' => 'required|string',
];
}
2022-08-23 23:49:19 +02:00
}