HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.ankua.asia/beike/Repositories/ZoneRepo.php
<?php
/**
 * ZoneRepo.php
 *
 * @copyright  2022 beikeshop.com - All Rights Reserved
 * @link       https://beikeshop.com
 * @author     TL <mengwb@guangda.work>
 * @created    2022-06-30 15:22:05
 * @modified   2022-06-30 15:22:05
 */

namespace Beike\Repositories;

use Beike\Models\Zone;

class ZoneRepo
{
    /**
     * @param $data
     * @return array
     */
    private static function handleParams($data)
    {
        return [
            'country_id' => $data['country_id']       ?? 0,
            'name'       => $data['name']             ?? '',
            'code'       => $data['code']             ?? '',
            'sort_order' => (int) $data['sort_order'] ?? 0,
            'status'     => (bool) $data['status']    ?? 0,
        ];
    }

    /**
     * 创建一个zone记录
     * @param $data
     * @return mixed
     */
    public static function create($data)
    {
        $data = self::handleParams($data);

        return Zone::query()->create($data);
    }

    /**
     * @param $id
     * @param $data
     * @return mixed
     * @throws \Exception
     */
    public static function update($id, $data)
    {
        $zone = Zone::query()->find($id);
        if (! $zone) {
            throw new \Exception("省份/地区id {$id} 不存在");
        }
        $data = self::handleParams($data);
        $zone->update($data);

        return $zone;
    }

    /**
     * @param $id
     * @return mixed
     */
    public static function find($id)
    {
        return Zone::query()->findOrFail($id);
    }

    /**
     * @param $id
     * @return void
     */
    public static function delete($id)
    {
        $zone = Zone::query()->find($id);
        if ($zone) {
            $zone->delete();
        }
    }

    /**
     * @param array $data
     * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
     */
    public static function list(array $data = [])
    {
        $builder = Zone::query()->with(['country']);

        if (isset($data['name'])) {
            $builder->where('zones.name', 'like', "%{$data['name']}%");
        }
        if (isset($data['code'])) {
            $builder->where('zones.code', 'like', "%{$data['code']}%");
        }
        if (isset($data['status'])) {
            $builder->where('zones.status', $data['status']);
        }
        if (isset($data['country_id'])) {
            $builder->where('zones.country_id', $data['country_id']);
        }

        return $builder->paginate(perPage())->withQueryString();
    }

    /**
     * 根据国家获取国家的省份
     * @param $country
     * @return \Illuminate\Database\Eloquent\HigherOrderBuilderProxy|\Illuminate\Support\HigherOrderCollectionProxy|mixed|void
     */
    public static function listByCountry($country)
    {
        if (gettype($country) != 'object') {
            $country = CountryRepo::find($country);
        }
        if ($country) {
            return $country->zones;
        }
    }

    /**
     * 通过国家ID获取省份拉下选项
     *
     * @param $countryId
     * @return array
     */
    public static function getZoneOptions($countryId): array
    {
        $zones = self::listByCountry($countryId);
        $items = [];
        foreach ($zones as $zone) {
            $items[] = [
                'value' => $zone->id,
                'label' => $zone->name,
            ];
        }

        return $items;
    }
}