Attendize/app/Models/Ticket.php

154 lines
4.4 KiB
PHP
Raw Normal View History

2016-02-29 15:59:36 +00:00
<?php namespace App\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
class Ticket extends MyBaseModel {
use SoftDeletes;
public $rules = [
'title' => array('required'),
'price' => array('required', 'numeric', 'min:0'),
'start_sale_date' => array('date'),
'end_sale_date' => array('date', 'after:start_sale_date'),
'quantity_available' => ['integer', 'min:0']
];
public $messages = [
'price.numeric' => 'The price must be a valid number (e.g 12.50)',
'title.required' => 'You must at least give a title for your ticket. (e.g Early Bird)',
'quantity_available.integer' => 'Please ensure the quantity available is a number.'
];
public function event() {
return $this->belongsTo('\App\Models\Event');
}
public function order() {
return $this->belongsToMany('\App\Models\Order');
}
public function questions() {
return $this->belongsToMany('\App\Models\Question', 'ticket_question');
}
public function reserved() {
}
public function scopeSoldOut($query) {
$query->where('remaining_tickets', '=', 0);
}
/*
* Getters & Setters
*/
public function getDates() {
return array('created_at', 'updated_at', 'start_sale_date', 'end_sale_date');
}
public function getQuantityRemainingAttribute() {
if(is_null($this->quantity_available)) {
return 9999; //Better way to do this?
}
return $this->quantity_available - ($this->quantity_sold + $this->quantity_reserved);
}
public function getQuantityReservedAttribute() {
$reserved_total = \DB::table('reserved_tickets')
->where('ticket_id', $this->id)
->where('expires', '>', \Carbon::now())
->sum('quantity_reserved');
return $reserved_total;
}
public function getBookingFeeAttribute () {
return (int)ceil($this->price) === 0 ? 0 : round(($this->price * (config('attendize.ticket_booking_fee_percentage') / 100)) + (config('attendize.ticket_booking_fee_fixed')), 2);
2016-02-29 15:59:36 +00:00
}
public function getOrganiserBookingFeeAttribute() {
return (int)ceil($this->price) === 0 ? 0 : round(($this->price * ($this->event->organiser_fee_percentage / 100)) + ($this->event->organiser_fee_fixed), 2);
}
public function getTotalBookingFeeAttribute() {
return $this->getBookingFeeAttribute() + $this->getOrganiserBookingFeeAttribute();
}
public function getTotalPriceAttribute() {
return $this->getTotalBookingFeeAttribute() + $this->price;
}
public function getTicketMaxMinRangAttribute() {
$range = [];
for($i=$this->min_per_person; $i<=$this->max_per_person; $i++) {
$range[] = [$i => $i];
}
return $range;
}
public function isFree() {
return (int)ceil($this->price) === 0;
}
/**
* Return the maximum figure to go to on dropdowns
*
* @return int
public function getMaxPerPersonMaxValueAttribute() {
return $this->max_per_person === -1 ? config('attendize.max_tickets_per_person') : $this->max_per_person;
2016-02-29 15:59:36 +00:00
}
*/
public function getSaleStatusAttribute() {
if ($this->start_sale_date !== NULL) {
if ($this->start_sale_date->isFuture()) {
return config('attendize.ticket_status_before_sale_date');
2016-02-29 15:59:36 +00:00
}
}
if ($this->end_sale_date !== NULL) {
if ($this->end_sale_date->isPast()) {
return config('attendize.ticket_status_after_sale_date');
2016-02-29 15:59:36 +00:00
}
}
if ((int)$this->quantity_available > 0) {
if ((int)$this->quantity_remaining <= 0) {
return config('attendize.ticket_status_sold_out');
2016-02-29 15:59:36 +00:00
}
}
if($this->event->start_date->lte(\Carbon::now())) {
return config('attendize.ticket_status_off_sale');
2016-02-29 15:59:36 +00:00
}
return config('attendize.ticket_status_on_sale');
2016-02-29 15:59:36 +00:00
}
// public function setQuantityAvailableAttribute($value) {
// $this->attributes['quantity_available'] = trim($value) == '' ? -1 : $value;
// }
//
// public function setMaxPerPersonAttribute($value) {
// $this->attributes['max_per_person'] = trim($value) == '' ? -1 : $value;
// }
}