Uname: Linux webm005.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
User: 6036 (villadal)
Group: 100 (users)
Disabled functions: NONE
Safe mode: On[ PHPinfo ]
//home/villadal/www/old/////booked/Presenters/Reservation/      ( Reset | Go to )
File Name: ReservationUpdatePresenter.php
Edit
<?php
/**
Copyright 2011-2014 Nick Korbel

This file is part of Booked Scheduler.

Booked Scheduler is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Booked Scheduler is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Booked Scheduler.  If not, see <http://www.gnu.org/licenses/>.
 */

require_once(ROOT_DIR 'lib/Application/Reservation/namespace.php');

interface 
IReservationUpdatePresenter
{
    
/**
     * @return ExistingReservationSeries
     */
    
public function BuildReservation();

    
/**
     * @param ExistingReservationSeries $reservationSeries
     */
    
public function HandleReservation($reservationSeries);
}

class 
ReservationUpdatePresenter implements IReservationUpdatePresenter
{
    
/**
     * @var IReservationUpdatePage
     */
    
private $page;

    
/**
     * @var UpdateReservationPersistenceService
     */
    
private $persistenceService;

    
/**
     * @var IReservationHandler
     */
    
private $handler;

    
/**
     * @var IResourceRepository
     */
    
private $resourceRepository;

    public function 
__construct(
        
IReservationUpdatePage $page,
        
IUpdateReservationPersistenceService $persistenceService,
        
IReservationHandler $handler,
        
IResourceRepository $resourceRepository,
        
UserSession $userSession)
    {
        
$this->page $page;
        
$this->persistenceService $persistenceService;
        
$this->handler $handler;
        
$this->resourceRepository $resourceRepository;
        
$this->userSession $userSession;
    }

    
/**
     * @return ExistingReservationSeries
     */
    
public function BuildReservation()
    {
        
$referenceNumber $this->page->GetReferenceNumber();
        
$existingSeries $this->persistenceService->LoadByReferenceNumber($referenceNumber);
        
$existingSeries->ApplyChangesTo($this->page->GetSeriesUpdateScope());

        
$resourceId $this->page->GetResourceId();
        
$additionalResourceIds $this->page->GetResources();

        if (empty(
$resourceId))
        {
            
// the first additional resource will become the primary if the primary is removed
            
$resourceId array_shift($additionalResourceIds);
        }

        
$resource $this->resourceRepository->LoadById($resourceId);
        
$existingSeries->Update(
            
$this->page->GetUserId(),
            
$resource,
            
$this->page->GetTitle(),
            
$this->page->GetDescription(),
            
$this->userSession);

        
$existingSeries->UpdateDuration($this->GetReservationDuration());
        
$roFactory = new RepeatOptionsFactory();

        
$existingSeries->Repeats($roFactory->CreateFromComposite($this->page$this->userSession->Timezone));

        
$additionalResources = array();
        foreach (
$additionalResourceIds as $additionalResourceId)
        {
            if (
$additionalResourceId != $resourceId)
            {
                
$additionalResources[] = $this->resourceRepository->LoadById($additionalResourceId);
            }
        }

        
$existingSeries->ChangeResources($additionalResources);
        
$existingSeries->ChangeParticipants($this->page->GetParticipants());
        
$existingSeries->ChangeInvitees($this->page->GetInvitees());
        
$existingSeries->ChangeAccessories($this->GetAccessories());
        
$existingSeries->ChangeAttributes($this->GetAttributes());

        
$attachments $this->page->GetAttachments();
        foreach (
$attachments as $attachment)
        {
            if (
$attachment != null)
            {
                if (
$attachment->IsError())
                {
                    
Log::Error('Error attaching file %s. %s'$attachment->OriginalName(), $attachment->Error());
                }
                else
                {
                    
Log::Debug('Attaching file %s to series %s'$attachment->OriginalName(), $existingSeries->SeriesId());
                    
$att ReservationAttachment::Create($attachment->OriginalName(), $attachment->MimeType(),
                                                         
$attachment->Size(), $attachment->Contents(),
                                                         
$attachment->Extension(), $existingSeries->SeriesId());
                    
$existingSeries->AddAttachment($att);
                }
            }
        }

        foreach (
$this->page->GetRemovedAttachmentIds() as $fileId)
        {
            
$existingSeries->RemoveAttachment($fileId);
        }

        if (
$this->page->HasStartReminder())
        {
            
$existingSeries->AddStartReminder(new ReservationReminder($this->page->GetStartReminderValue(), $this->page->GetStartReminderInterval()));
        }
        else
        {
            
$existingSeries->RemoveStartReminder();
        }

        if (
$this->page->HasEndReminder())
        {
            
$existingSeries->AddEndReminder(new ReservationReminder($this->page->GetEndReminderValue(), $this->page->GetEndReminderInterval()));
        }
        else
        {
            
$existingSeries->RemoveEndReminder();
        }

        return 
$existingSeries;
    }

    
/**
     * @param ExistingReservationSeries $reservationSeries
     */
    
public function HandleReservation($reservationSeries)
    {
        
$successfullySaved $this->handler->Handle($reservationSeries$this->page);

        if (
$successfullySaved)
        {
            
$this->page->SetRequiresApproval($reservationSeries->RequiresApproval());
            
$this->page->SetReferenceNumber($reservationSeries->CurrentInstance()->ReferenceNumber());
        }
    }

    
/**
     * @return DateRange
     */
    
private function GetReservationDuration()
    {
        
$startDate $this->page->GetStartDate();
        
$startTime $this->page->GetStartTime();
        
$endDate $this->page->GetEndDate();
        
$endTime $this->page->GetEndTime();

        
$timezone $this->userSession->Timezone;
        return 
DateRange::Create($startDate ' ' $startTime$endDate ' ' $endTime$timezone);
    }

    private function 
GetAccessories()
    {
        
$accessories = array();
        foreach (
$this->page->GetAccessories() as $accessory)
        {
            
$accessories[] = new ReservationAccessory($accessory->Id$accessory->Quantity$accessory->Name);
        }

        return 
$accessories;
    }

    
/**
     * @return AttributeValue[]
     */
    
private function GetAttributes()
    {
        
$attributes = array();
        foreach (
$this->page->GetAttributes() as $attribute)
        {
            
$attributes[] = new AttributeValue($attribute->Id$attribute->Value);
        }

        return 
$attributes;
    }
}

All system for education purposes only. For more tools: Telegram @jackleet

Mr.X Private Shell

Logo
-
New File | New Folder
Command
SQL