163 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			163 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Contribution\Documents;
 | |
| 
 | |
| use App\Contribution\Data\MemberData;
 | |
| use App\Country;
 | |
| use Carbon\Carbon;
 | |
| use Illuminate\Support\Collection;
 | |
| use Illuminate\Support\Str;
 | |
| use Zoomyboy\Tex\Engine;
 | |
| use Zoomyboy\Tex\Template;
 | |
| 
 | |
| class BdkjHesse extends ContributionDocument
 | |
| {
 | |
|     /**
 | |
|      * @param Collection<int, Collection<int, MemberData>> $members
 | |
|      */
 | |
|     public function __construct(
 | |
|         public string $dateFrom,
 | |
|         public string $dateUntil,
 | |
|         public string $zipLocation,
 | |
|         public ?Country $country,
 | |
|         public Collection $members,
 | |
|         public string $eventName,
 | |
|         public ?string $filename = '',
 | |
|         public string $type = 'F',
 | |
|     ) {
 | |
|     }
 | |
| 
 | |
|     public function dateFrom(): string
 | |
|     {
 | |
|         return Carbon::parse($this->dateFrom)->format('d.m.Y');
 | |
|     }
 | |
| 
 | |
|     public function dateUntil(): string
 | |
|     {
 | |
|         return Carbon::parse($this->dateUntil)->format('d.m.Y');
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public static function fromRequest(array $request): self
 | |
|     {
 | |
|         return new self(
 | |
|             dateFrom: $request['dateFrom'],
 | |
|             dateUntil: $request['dateUntil'],
 | |
|             zipLocation: $request['zipLocation'],
 | |
|             country: Country::where('id', $request['country'])->firstOrFail(),
 | |
|             members: MemberData::fromModels($request['members'])->chunk(20),
 | |
|             eventName: $request['eventName'],
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public static function fromApiRequest(array $request): self
 | |
|     {
 | |
|         return new self(
 | |
|             dateFrom: $request['dateFrom'],
 | |
|             dateUntil: $request['dateUntil'],
 | |
|             zipLocation: $request['zipLocation'],
 | |
|             country: Country::where('id', $request['country'])->firstOrFail(),
 | |
|             members: MemberData::fromApi($request['member_data'])->chunk(20),
 | |
|             eventName: $request['eventName'],
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function countryName(): string
 | |
|     {
 | |
|         return $this->country->name;
 | |
|     }
 | |
| 
 | |
|     public function durationDays(): int
 | |
|     {
 | |
|         return Carbon::parse($this->dateUntil)->diffInDays(Carbon::parse($this->dateFrom)) + 1;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param Collection<int, MemberData> $chunk
 | |
|      */
 | |
|     public function membersDays(Collection $chunk): int
 | |
|     {
 | |
|         return $this->durationDays() * $chunk->count();
 | |
|     }
 | |
| 
 | |
|     public function pages(): int
 | |
|     {
 | |
|         return count($this->members);
 | |
|     }
 | |
| 
 | |
|     public function memberName(MemberData $member): string
 | |
|     {
 | |
|         return $member->separatedName();
 | |
|     }
 | |
| 
 | |
|     public function memberCity(MemberData $member): string
 | |
|     {
 | |
|         return $member->city();
 | |
|     }
 | |
| 
 | |
|     public function memberGender(MemberData $member): string
 | |
|     {
 | |
|         if (!$member->gender) {
 | |
|             return '';
 | |
|         }
 | |
| 
 | |
|         return strtolower(substr($member->gender->name, 0, 1));
 | |
|     }
 | |
| 
 | |
|     public function memberBirthYear(MemberData $member): string
 | |
|     {
 | |
|         return $member->birthYear();
 | |
|     }
 | |
| 
 | |
|     public function basename(): string
 | |
|     {
 | |
|         return 'zuschuesse-bdkj-hessen' . Str::slug($this->eventName);
 | |
|     }
 | |
| 
 | |
|     public function view(): string
 | |
|     {
 | |
|         return 'tex.contribution.bdkj-hesse';
 | |
|     }
 | |
| 
 | |
|     public function template(): Template
 | |
|     {
 | |
|         return Template::make('tex.templates.contribution');
 | |
|     }
 | |
| 
 | |
|     public function setFilename(string $filename): static
 | |
|     {
 | |
|         $this->filename = $filename;
 | |
| 
 | |
|         return $this;
 | |
|     }
 | |
| 
 | |
|     public function getEngine(): Engine
 | |
|     {
 | |
|         return Engine::PDFLATEX;
 | |
|     }
 | |
| 
 | |
|     public static function getName(): string
 | |
|     {
 | |
|         return 'Für BDKJ Hessen 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',
 | |
|         ];
 | |
|     }
 | |
| }
 |