]> git.localhorst.tv Git - alttp.git/blob - app/Console/Commands/ChatlibDatabase.php
further refine chat gen
[alttp.git] / app / Console / Commands / ChatlibDatabase.php
1 <?php
2
3 namespace App\Console\Commands;
4
5 use App\Models\ChatLib;
6 use App\Models\ChatLog;
7 use Illuminate\Console\Command;
8
9 class ChatlibDatabase extends Command {
10
11         /**
12          * The name and signature of the console command.
13          *
14          * @var string
15          */
16         protected $signature = 'chatlib:database';
17
18         /**
19          * The console command description.
20          *
21          * @var string
22          */
23         protected $description = 'Updates the ChatLib database';
24
25         /**
26          * Execute the console command.
27          *
28          * @return int
29          */
30         public function handle() {
31                 $de = new ChatLib();
32                 $en = new ChatLib();
33
34                 ChatLog::where('type', '=', 'chat')
35                         ->where('banned', '=', false)
36                         ->whereNotNull('evaluated_at')
37                         ->where('created_at', '<', now()->sub(7, 'day'))
38                         ->whereNotIn('classification', ['gg', 'gl', 'number', 'o7'])
39                         ->whereRaw('LENGTH(`text_content`) > 12')
40                         ->chunk(5000, function ($msgs) use ($de, $en) {
41                                 foreach ($msgs as $msg) {
42                                         if ($msg->detected_language === 'de') {
43                                                 $de->addMessage($msg);
44                                         } else if ($msg->detected_language === 'en') {
45                                                 $en->addMessage($msg);
46                                         } else if (is_null($msg->detected_language)) {
47                                                 $de->addMessage($msg);
48                                                 $en->addMessage($msg);
49                                         }
50                                 }
51                         });
52
53                 $de->compile();
54                 $de->saveAs('de');
55
56                 $en->compile();
57                 $en->saveAs('en');
58
59                 return 0;
60         }
61
62 }
63
64 ?>