File tree 4 files changed +40
-4
lines changed
4 files changed +40
-4
lines changed Original file line number Diff line number Diff line change @@ -13,25 +13,30 @@ class Kernel extends ConsoleKernel
13
13
*/
14
14
protected function schedule (Schedule $ schedule ): void
15
15
{
16
- // $schedule->command('inspire')->hourly();
17
-
16
+ // Ежедневные задачи
18
17
$ schedule ->command ('app:checkout-latest-docs ' )->daily ();
19
18
$ schedule ->command ('app:compare-document ' )->daily ();
20
19
$ schedule ->command ('app:update-packages ' )->daily ();
20
+
21
+ // Ежедневная очистка логов и просмотров
22
+ $ schedule ->command ('activitylog:clean ' )->daily ();
21
23
$ schedule ->command ('telescope:prune ' )->daily ();
22
24
23
- // вот не знаю, оо тут нужно или нет?
25
+ // Ежедневная очистка моделей, таких как CodeSnippet
24
26
$ schedule ->command ('model:prune ' , [
25
27
'--model ' => [
26
28
CodeSnippet::class,
27
29
],
28
30
])->daily ();
29
31
32
+ // Оптимизация SQLite каждую минуту смотри https://www.sqlite.org/pragma.html#pragma_optimize
30
33
$ schedule ->command ('sqlite:optimize ' )->everyMinute ();
31
34
35
+ // Перевод достижений каждую неделю по выходным
32
36
$ schedule ->command ('app:achievements-translation ' )
33
37
->weeklyOn ([Schedule::SATURDAY , Schedule::SUNDAY ]);
34
38
39
+ // Ежедневное создание и очистка резервных копий в определенное время
35
40
$ schedule ->command ('backup:clean ' )->daily ()->at ('01:00 ' );
36
41
$ schedule ->command ('backup:run ' )->daily ()->at ('01:30 ' );
37
42
}
Original file line number Diff line number Diff line change 22
22
/**
23
23
* Class Post
24
24
*
25
+ * TODO:
25
26
* Single Table Inheritance (STI) model representing various types of content.
26
27
* This class serves as the base model from which specific types of posts
27
28
* inherit. The 'type' attribute is used to distinguish between different
Original file line number Diff line number Diff line change 39
39
/*
40
40
* The view that will render the feed.
41
41
*/
42
- 'view ' => 'feed::atom ' ,
42
+ 'view ' => 'post.rss ' ,
43
43
44
44
/*
45
45
* The mime type to be used in the <link> tag. Set to an empty string to automatically
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments