| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- <?php
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "auctions".
- *
- * @property integer $id
- * @property integer $user_id
- * @property integer $lot_id
- * @property integer $date_start
- * @property integer $date_stop
- * @property integer $last_price
- * @property integer $last_user
- * @property integer $last_date
- * @property string $time_step_down
- * @var $user User
- * @var $lots Lots
- */
- class Auctions extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'auctions';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['user_id', 'lot_id', 'date_start', 'date_stop', 'last_price', 'last_user', 'last_date'], 'required'],
- [['user_id', 'lot_id', 'last_user','type','lot_num','status','type_id','temp_step_down','step_down'], 'integer'],
- [['userName', 'lot', 'lotName','date_start', 'date_stop', 'last_price', 'last_date','name','bidding_date','time_step_down'], 'safe'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => Yii::t('app', 'ID'),
- 'name' => Yii::t('app', 'AukName ID'),
- 'user_id' => Yii::t('app', 'организатор'),
- 'lot_id' => Yii::t('app', 'lot_id'),
- 'lot_num' => Yii::t('app', 'Lot ID'),
- 'date_start' => Yii::t('app', 'AucStart ID'),
- 'date_stop' => Yii::t('app', 'DateStop ID'),
- 'bidding_date' => Yii::t('app', 'endBidding ID'),
- 'last_price' => Yii::t('app', 'текущая цена'),
- 'last_user' => Yii::t('app', 'ставка последнего юзера'),
- 'last_date' => Yii::t('app', 'время последней ставки'),
- 'lotName' => Yii::t('app', 'Lot ID'),
- 'status' => Yii::t('app', 'Status ID'),
- 'userName' => Yii::t('app', 'OrgName ID'),
- 'type' => Yii::t('app', 'AucType ID'),
- 'type_id' => Yii::t('app', 'AucType ID'),
- 'time_step_down' => Yii::t('app', 'Time Step'),
- 'lot' => Yii::t('app', 'Lot'),
- ];
- }
- /* public function afterDelete()
- {
- parent::afterDelete();
- }*/
- public function CreateAuction($insert)
- {
- //$valid = $this->LotValidate($insert['lot_id']);
- $model = new Auctions();
- if (empty($insert['step_down'])) { $insert['step_down']=3; } // потом поправить на ауке на повышение
- if (empty($insert['time_step_down'])) { $insert['time_step_down']="00:10"; }
- $model->setAttributes([
- 'user_id' => $insert['user_id'],
- 'name' => $insert['name'],
- 'lot_id' => $insert['lot_id'],
- 'lot_num' => $insert['lot_num'],
- 'date_start' => $insert['date_start'],
- 'bidding_date' => $insert['bidding_date'],
- 'last_date' => $insert['date_start'],
- 'date_stop' => $insert['date_stop'],
- 'type_id' => $insert['type_id'],
- 'step_down' => $insert['step_down'],
- 'temp_step_down' => $insert['step_down'],
- 'time_step_down' => $insert['time_step_down'],
- 'status' => '0',
- ]);
- $model->save(false);
- return $model;
- }
- private function LotValidate($lot_id)
- {
- $command = Yii::$app->db->createCommand("SELECT * from auctions WHERE lot_id=:id");
- $command->bindValue(':id', $lot_id);
- $result = $command->queryOne();
- if(!empty($result))
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- public function getLot()
- {
- return $this->hasOne(Lots::className(), ['id' => 'lot_id']);
- }
- /* public function getLotStartPrice()
- {
- return $this->hasOne(Lots::className(),['start_price' => 'lot_id']);
- }*/
- public function getCategory(){
- return $this->hasOne(Category::className(), ['id' => 'category_id'])->via('lot');
- }
- public function getUser()
- {
- return $this->hasOne(User::className(), ['id' => 'user_id']);
- }
- public function getTrade()
- {
- return $this->hasMany(Trade::className(), ['auk_id' => 'id']);
- }
- public function getWinners(){
- return $this->hasMany(Trade::className(), ['auk_id' => 'id']);
- }
- public function setFlags($value)
- {
- Yii::$app->session->set('user.flags',$value);
- }
- private function SendTime($last_date,$date_stop,$date_start)
- {
- if($this->type_id==1)
- {
- if ((strtotime($date_stop) - strtotime($last_date)) < 601) {
- $step = 600;
- $diff = strtotime(date("Y-m-d H:i:s")) - strtotime($last_date);
- //$past_time = sprintf('%02d:%02d:%02d', $diff / 3600, ($diff % 3600) / 60, $diff % 60);
- $diff_time = $step - $diff; // 1 Hours perenesti v adminky // 7200 for
- return $diff_time;
- } else {
- $step = strtotime($date_stop) - strtotime($date_start);
- $diff = strtotime(date("Y-m-d H:i:s")) - strtotime($date_start);
- //$past_time = sprintf('%02d:%02d:%02d', $diff / 3600, ($diff % 3600) / 60, $diff % 60);
- $diff_time = $step - $diff; // 1 Hours perenesti v adminky // 7200 for
- return $diff_time;
- }
- }
- if($this->type_id==2)
- {
- list($time,$null)=explode(".",$this->time_step_down);
- sscanf($time, "%d:%d:%d", $hours, $minutes, $seconds);
- $time_seconds = isset($seconds) ? $hours * 3600 + $minutes * 60 + $seconds : $hours * 60 + $minutes;
- $m_step = $time_seconds + 1;
- if ((strtotime($date_stop) - strtotime($last_date)) < $m_step) {
- $step = $time_seconds;
- $diff = strtotime(date("Y-m-d H:i:s")) - strtotime($last_date);
- //$past_time = sprintf('%02d:%02d:%02d', $diff / 3600, ($diff % 3600) / 60, $diff % 60);
- $diff_time = $step - $diff; // 1 Hours perenesti v adminky // 7200 for
- return $diff_time;
- } else {
- $step = strtotime($date_stop) - strtotime($date_start);
- $diff = strtotime(date("Y-m-d H:i:s")) - strtotime($date_start);
- //$past_time = sprintf('%02d:%02d:%02d', $diff / 3600, ($diff % 3600) / 60, $diff % 60);
- $diff_time = $step - $diff; // 1 Hours perenesti v adminky // 7200 for
- return $diff_time;
- }
- }
- }
- private function SendPerc($last_date,$date_stop,$date_start)
- {
- if($this->type_id==1)
- {
- $diff = $this->SendTime($last_date,$date_stop,$date_start);
- if((strtotime($date_stop) - strtotime($last_date)) < 601)
- {
- $step = 600;
- }
- else
- {
- $step = strtotime($date_stop) - strtotime($date_start);
- }
- $perc = 100 * $diff / $step; //100-100*у/х 100*х/у-100
- return round($perc,2);
- }
- if($this->type_id==2)
- {
- //$m_step = 121;
- $diff = $this->SendTime($last_date,$date_stop,$date_start);
- if((strtotime($date_stop) - strtotime($last_date)) < 601)
- {
- $step = 600;
- }
- else
- {
- $step = strtotime($date_stop) - strtotime($date_start);
- }
- $perc = 100 * $diff / $step; //100-100*у/х 100*х/у-100
- return round($perc,2);
- }
- }
- private function CheckRole()
- {
- if(Yii::$app->user->can('admin'))
- {
- return true;
- }
- if(Yii::$app->user->can('watcher'))
- {
- return false;
- }
- else {
- $sql = Yii::$app->db->createCommand("SELECT status from bidding WHERE auction_id=:auction_id and user_id=:user_id");
- $sql->bindValues([':auction_id' => $this->id, ':user_id' => Yii::$app->user->identity->id]);
- $res = $sql->queryOne();
- if ($res == false) {
- return false;
- } elseif ($res['status'] == "2") // 2=reject
- {
- return false;
- } elseif ($res['status'] == "0") // 0=default
- {
- return false;
- } elseif ($res['status'] == "1") // 0=accept
- {
- return true;
- }
- }
- }
- // for rest api
- public function fields()
- {
- return [
- 'id',
- 'user_id',
- 'user_role' => function() {
- return $this->CheckRole();
- },
- 'lot_id',
- 'type_id' => function () {
- return $this->type_id;
- },
- 'member_user_id' => function () {
- return Yii::$app->user->identity->id;
- },
- 'date_start' => function($model)
- {
- return Yii::$app->formatter->asTime($model->date_start, "php:d.m.Y H:i:s");
- },
- 'date_stop' => function($model)
- {
- return Yii::$app->formatter->asTime($model->date_stop, "php:d.m.Y H:i:s");
- },
- 'start_price' => function()
- {
- return $this->lot->start_price;
- },
- 'step' => function()
- {
- return $this->lot->step;
- },
- 'step_money' => function()
- {
- $step_money = $this->lot->start_price / 100 * $this->lot->step;
- return round($step_money,2);
- },
- 'delta_money' => function()
- {
- if($this->type_id==1) {
- $delta_money = $this->last_price - $this->lot->start_price <= 0 ? 0 : $this->last_price - $this->lot->start_price;
- return round($delta_money, 2);
- }
- if($this->type_id==2) {
- $delta_money = $this->lot->start_price - $this->last_price <= 0 ? 0 : $this->lot->start_price - $this->last_price;
- return round($delta_money, 2);
- }
- },
- 'delta_perc' => function()
- {
- if($this->type_id==1) {
- $delta_perc = ($this->last_price - $this->lot->start_price) / ($this->lot->start_price / 100) <= 0 ? 0 : ($this->last_price - $this->lot->start_price) / ($this->lot->start_price / 100);
- return round($delta_perc, 2);
- }
- if($this->type_id==2) {
- $delta_perc = ($this->lot->start_price - $this->last_price) / ($this->lot->start_price / 100) <= 0 ? 0 : ($this->lot->start_price - $this->last_price) / ($this->lot->start_price / 100);
- return round($delta_perc, 2);
- }
- },
- 'last_user',
- 'next_price' => function()
- {
- //$next_price = $this->last_price + ($this->lot->start_price / 100 * $this->lot->step);
- //return round($next_price, 2);
- if($this->type_id==1) {
- if($this->last_price=="0")
- {
- $next_price = $this->lot->start_price + ($this->lot->start_price / 100 * $this->lot->step);
- return round($next_price, 2); }
- //return round($this->lot->start_price, 2);}
- else
- $next_price = $this->last_price + ($this->lot->start_price / 100 * $this->lot->step);
- return round($next_price, 2);
- }
- if($this->type_id==2) {
- if ($this->last_price == "0" && $this->last_user == "0" && $this->temp_step_down != "0") {
- return round($this->lot->start_price, 2);
- }
- elseif ($this->last_user == "0")
- {
- $next_price = $this->last_price; //- ($this->lot->start_price / 100 * $this->lot->step);
- return round($next_price, 2);
- }
- else
- {
- $next_price = $this->last_price + ($this->lot->start_price / 100 * $this->lot->step);
- return round($next_price, 2);
- }
- }
- },
- 'time' => function()
- {
- $diff = $this->SendTime($this->last_date, $this->date_stop, $this->date_start); // $this->date_start for
- if($diff > 0)
- {
- return $diff;
- }
- else
- {
- return 0;
- }
- },
- //'diff' => function()
- //{
- // return strtotime($this->date_stop) - strtotime($this->last_date);
- //},
- 'perc' => function()
- {
- $diff = $this->SendPerc($this->last_date,$this->date_stop, $this->date_start);
- if($diff > 0)
- {
- return $diff;
- }
- else
- {
- return 0;
- }
- },
- 'last_price',
- 'status',
- 'current_time' => function($model){
- return time();
- },
- ];
- }
- public function extraFields()
- {
- return [
- //'date_start',
- //'date_stop',
- ];
- }
- public static function statusNames(){
- return [
- '0' => Yii::t('app','pMakeBidding ID'),
- '1' => Yii::t('app','pWaitAuction ID'),
- '2' => Yii::t('app','pMakeAuction ID'),
- '3' => Yii::t('app','pMakeFinal ID'),
- '4' => Yii::t('app','pEndTorg ID')
- ];
- }
- }
|