Skip to content

Commit 2b9bcbb

Browse files
committed
WIP
1 parent e9939c3 commit 2b9bcbb

File tree

4 files changed

+40
-4
lines changed

4 files changed

+40
-4
lines changed

app/Console/Kernel.php

+8-3
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,30 @@ class Kernel extends ConsoleKernel
1313
*/
1414
protected function schedule(Schedule $schedule): void
1515
{
16-
// $schedule->command('inspire')->hourly();
17-
16+
// Ежедневные задачи
1817
$schedule->command('app:checkout-latest-docs')->daily();
1918
$schedule->command('app:compare-document')->daily();
2019
$schedule->command('app:update-packages')->daily();
20+
21+
// Ежедневная очистка логов и просмотров
22+
$schedule->command('activitylog:clean')->daily();
2123
$schedule->command('telescope:prune')->daily();
2224

23-
// вот не знаю, оо тут нужно или нет?
25+
// Ежедневная очистка моделей, таких как CodeSnippet
2426
$schedule->command('model:prune', [
2527
'--model' => [
2628
CodeSnippet::class,
2729
],
2830
])->daily();
2931

32+
// Оптимизация SQLite каждую минуту смотри https://www.sqlite.org/pragma.html#pragma_optimize
3033
$schedule->command('sqlite:optimize')->everyMinute();
3134

35+
// Перевод достижений каждую неделю по выходным
3236
$schedule->command('app:achievements-translation')
3337
->weeklyOn([Schedule::SATURDAY, Schedule::SUNDAY]);
3438

39+
// Ежедневное создание и очистка резервных копий в определенное время
3540
$schedule->command('backup:clean')->daily()->at('01:00');
3641
$schedule->command('backup:run')->daily()->at('01:30');
3742
}

app/Models/Post.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
/**
2323
* Class Post
2424
*
25+
* TODO:
2526
* Single Table Inheritance (STI) model representing various types of content.
2627
* This class serves as the base model from which specific types of posts
2728
* inherit. The 'type' attribute is used to distinguish between different

config/feed.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
/*
4040
* The view that will render the feed.
4141
*/
42-
'view' => 'feed::atom',
42+
'view' => 'post.rss',
4343

4444
/*
4545
* The mime type to be used in the <link> tag. Set to an empty string to automatically

resources/views/post/rss.blade.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?=
2+
/* Using an echo tag here so the `<? ... ?>` won't get parsed as short tags */
3+
'<?xml version="1.0" encoding="UTF-8"?>'.PHP_EOL
4+
?>
5+
<rss version="2.0">
6+
<channel>
7+
<title><![CDATA[{{ $meta['title'] }}]]></title>
8+
<link><![CDATA[{{ url($meta['link']) }}]]></link>
9+
<description><![CDATA[{{ $meta['description'] }}]]></description>
10+
<language>{{ $meta['language'] }}</language>
11+
<pubDate>{{ $meta['updated'] }}</pubDate>
12+
13+
@foreach($items as $item)
14+
<item>
15+
<title><![CDATA[{{ $item->title }}]]></title>
16+
<link>{{ url($item->link) }}</link>
17+
<description><![CDATA[{!! $item->summary !!}]]></description>
18+
<author><![CDATA[{{ $item->authorName }}]]></author>
19+
<guid isPermaLink="false">{{ $item->id }}</guid>
20+
<pubDate>{{ $item->updated->toRssString() }}</pubDate>
21+
@if($item->__isset('enclosure'))
22+
<enclosure url="{{ url($item->enclosure) }}" length="{{ $item->enclosureLength }}" type="{{ $item->enclosureType }}" />
23+
@endif
24+
@foreach($item->category as $category)
25+
<category>{{ $category }}</category>
26+
@endforeach
27+
</item>
28+
@endforeach
29+
</channel>
30+
</rss>

0 commit comments

Comments
 (0)