This commit is contained in:
2018-11-21 17:02:14 +03:00
parent 1e728726d0
commit 5a8b88b225
40 changed files with 1500 additions and 8 deletions

53
common/models/Hh.php Normal file
View File

@ -0,0 +1,53 @@
<?php
namespace common\models;
use Yii;
/**
* This is the model class for table "hh".
*
* @property int $id
* @property int $hh_id
* @property string $url
* @property string $title
* @property int $dt_add
* @property string $photo
*/
class Hh extends \yii\db\ActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'hh';
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['hh_id', 'dt_add'], 'integer'],
[['url'], 'required'],
[['url', 'title', 'photo'], 'string', 'max' => 255],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'hh_id' => 'Hh ID',
'url' => 'Url',
'title' => 'Название',
'dt_add' => 'Дата добавления',
'photo' => 'Фото',
];
}
}

88
common/models/HhJob.php Normal file
View File

@ -0,0 +1,88 @@
<?php
namespace common\models;
use Yii;
/**
* This is the model class for table "hh_job".
*
* @property int $id
* @property int $employer_id
* @property int $hh_id
* @property string $title
* @property string $url
* @property int $salary_from
* @property int $salary_to
* @property string $salary_currency
* @property string $address
* @property int $dt_add
*/
class HhJob extends \yii\db\ActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'hh_job';
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['employer_id', 'hh_id', 'salary_from', 'salary_to', 'dt_add'], 'integer'],
[['title', 'url', 'address'], 'string', 'max' => 255],
[['salary_currency'], 'string', 'max' => 100],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'employer_id' => 'Работодатель',
'hh_id' => 'Hh ID',
'title' => 'Заголовок',
'url' => 'Url',
'salary_from' => 'З.П. от',
'salary_to' => 'З.П. до',
'salary_currency' => 'З.П. валюта',
'address' => 'Адрес',
'dt_add' => 'Дата',
];
}
public function gethhcompany()
{
return $this->hasOne(Hh::class, ['hh_id' => 'employer_id']);
}
public static function createFromHH($data)
{
if (!self::find()->where(['hh_id' => $data->item->id])->exists()) {
$j = new self();
$j->dt_add = time();
$j->title = $data->item->name;
$j->hh_id = $data->item->id;
$j->url = $data->item->alternate_url;
$j->employer_id = $data->item->employer->id;
if (!empty($data->item->address)) {
$j->address = $data->item->address->city . ', ' . $data->item->address->street . ', ' . $data->item->address->building;
}
if (!empty($data->item->salary)) {
$j->salary_from = $data->item->salary->from;
$j->salary_to = $data->item->salary->to;
$j->salary_currency = $data->item->salary->currency;
}
return $j->save();
}
return false;
}
}

View File

@ -16,6 +16,7 @@ use yii\db\Expression;
* @property string $updated_at
* @property string $budget
* @property int $company_id
* @property int $hh_id
*
* @property FieldsValue[] $fieldsValues
* @property Company $company
@ -55,6 +56,7 @@ class Project extends \yii\db\ActiveRecord
[['name'], 'string', 'max' => 255],
[['budget'], 'string', 'max' => 100],
[['company_id'], 'exist', 'skipOnError' => true, 'targetClass' => Company::class, 'targetAttribute' => ['company_id' => 'id']],
[['hh_id'], 'exist', 'skipOnError' => true, 'targetClass' => Hh::class, 'targetAttribute' => ['hh_id' => 'id']],
];
}
@ -71,6 +73,7 @@ class Project extends \yii\db\ActiveRecord
'updated_at' => 'Дата редактирования',
'budget' => 'Бюджет',
'company_id' => 'Компания',
'hh_id' => 'Проект на hh.ru',
];
}
@ -90,6 +93,14 @@ class Project extends \yii\db\ActiveRecord
return $this->hasOne(Company::class, ['id' => 'company_id']);
}
/**
* @return \yii\db\ActiveQuery
*/
public function getHh()
{
return $this->hasOne(Hh::class, ['id' => 'hh_id']);
}
/**
* @return \yii\db\ActiveQuery
*/