You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

158 lines
6.6 KiB

3 days ago
<?php
namespace App\Console\Commands;
use App\Models\User;
use Illuminate\Console\Command;
class CheckMissingSchoolmateData extends Command
{
/**
* 允许直接认定为校友的课程体系名称
*
* @var string[]
*/
protected array $allowedCourseTypeNames = ['高研班', '攀峰班'];
/**
* 允许直接认定为校友的课程名称
*
* @var string[]
*/
protected array $allowedCourseNames = ['首期技术经理人领航班'];
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'check_missing_schoolmate_data';
/**
* The console command description.
*
* @var string
*/
protected $description = '按当前校友认定口径,检查符合条件但未进入校友库的用户,并输出名单';
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$today = date('Y-m-d');
$allowedCourseTypeNames = $this->allowedCourseTypeNames;
$allowedCourseNames = $this->allowedCourseNames;
$missingUsers = User::query()
->where(function ($query) {
$query->whereNull('is_schoolmate')
->orWhere('is_schoolmate', '!=', 1);
})
->whereHas('courseSigns', function ($query) use ($today, $allowedCourseTypeNames, $allowedCourseNames) {
$query->where('status', 1)
->whereHas('course', function ($courseQuery) use ($today, $allowedCourseTypeNames, $allowedCourseNames) {
$courseQuery->where(function ($eligibleQuery) use ($today, $allowedCourseTypeNames, $allowedCourseNames) {
$eligibleQuery->where(function ($autoSchoolmateQuery) use ($today) {
$autoSchoolmateQuery->where('auto_schoolmate', 1)
->whereNotNull('start_date')
->where('start_date', '<=', $today);
})->orWhereHas('typeDetail', function ($typeQuery) use ($allowedCourseTypeNames) {
$typeQuery->whereIn('name', $allowedCourseTypeNames);
})->orWhereIn('name', $allowedCourseNames);
});
});
})
->with([
'courseSigns' => function ($query) use ($today, $allowedCourseTypeNames, $allowedCourseNames) {
$query->where('status', 1)
->whereHas('course', function ($courseQuery) use ($today, $allowedCourseTypeNames, $allowedCourseNames) {
$courseQuery->where(function ($eligibleQuery) use ($today, $allowedCourseTypeNames, $allowedCourseNames) {
$eligibleQuery->where(function ($autoSchoolmateQuery) use ($today) {
$autoSchoolmateQuery->where('auto_schoolmate', 1)
->whereNotNull('start_date')
->where('start_date', '<=', $today);
})->orWhereHas('typeDetail', function ($typeQuery) use ($allowedCourseTypeNames) {
$typeQuery->whereIn('name', $allowedCourseTypeNames);
})->orWhereIn('name', $allowedCourseNames);
});
})
->with('course.typeDetail');
}
])
->orderBy('id')
->get();
$this->info('检测口径:用户当前不是校友,但存在以下任一合格来源,则判定为“应进入校友库但未进入”:');
$this->line('1. 已审核通过,且课程开启自动入校友,且课程已开课');
$this->line('2. 已审核通过,且课程属于高研班体系');
$this->line('3. 已审核通过,且课程属于攀峰班体系');
$this->line('4. 已审核通过,且课程为“首期技术经理人领航班”');
if ($missingUsers->isEmpty()) {
$this->info('检测完成:当前未发现应进入校友库但未进入的用户。');
return self::SUCCESS;
}
$this->warn('检测完成:发现 ' . $missingUsers->count() . ' 位符合条件但未进入校友库的用户。');
$this->newLine();
$rows = [];
foreach ($missingUsers as $user) {
$eligibleCourses = $user->courseSigns
->map(function ($courseSign) use ($allowedCourseTypeNames, $allowedCourseNames, $today) {
if (empty($courseSign->course)) {
return '课程已删除';
}
$course = $courseSign->course;
$courseTypeName = $course->typeDetail->name ?? '空';
$reasons = [];
if ($course->auto_schoolmate == 1 && !empty($course->start_date) && $course->start_date <= $today) {
$reasons[] = '自动入校友';
}
if (in_array($courseTypeName, $allowedCourseTypeNames, true)) {
$reasons[] = '体系白名单';
}
if (in_array($course->name, $allowedCourseNames, true)) {
$reasons[] = '课程白名单';
}
return sprintf(
'%s[课程体系=%s,auto_schoolmate=%s,start_date=%s,命中规则=%s]',
$course->name,
$courseTypeName,
(string) $course->auto_schoolmate,
$course->start_date ?: '空',
empty($reasons) ? '无' : implode('+', $reasons)
);
})
->filter()
->unique()
->values()
->implode('');
$rows[] = [
'用户ID' => $user->id,
'姓名' => $user->name,
'手机号' => $user->mobile,
'当前校友状态' => (string) ($user->is_schoolmate ?? '空'),
'应入校友依据' => $eligibleCourses ?: '无',
'不合格原因' => '符合校友认定条件,但当前未进入校友库',
];
}
$this->table(
['用户ID', '姓名', '手机号', '当前校友状态', '应入校友依据', '不合格原因'],
$rows
);
$this->info('本次仅在命令行输出异常名单,不再生成 txt 文件。');
return self::FAILURE;
}
}