xml-feed-generator/README.md

54 lines
2.7 KiB
Markdown
Raw Normal View History

2023-10-17 13:58:33 +00:00
# xml-feed-generator
2023-10-18 11:13:54 +00:00
an RSS/atom feed generator for my personal site :cat: tested to work with PHP version 8.2.
2023-10-17 14:43:00 +00:00
---
2023-10-18 07:03:14 +00:00
## how it works
2023-10-17 14:43:00 +00:00
1. match files in a specificied directory.
2. precompile any PHP files, if found.
3. load the DOM of each file.
4. for each child of `<entry>` in the XML feed, output a string value from one of the following HTML elements/file properties, in order of priority:
2023-10-18 11:13:54 +00:00
| original HTML | XML output |
2023-10-18 11:13:54 +00:00
|-------------------------------|---------------------------------|
| 1. `class="p-name"` | `<title>` |
2023-10-18 14:06:29 +00:00
| 2. the first `<title>` element | |
2023-10-18 11:13:54 +00:00
| 3. the XML feed title | |
| | |
| 1. `datetime` attribute of `class="dt-updated"` | `<updated>` |
2023-10-18 11:13:54 +00:00
| 2. `datetime` attribute of the first `<time>` element | |
| 3. file modification date, retrieved from the server | |
| | |
| 1. `datetime` attribute of `class="dt-published"` | `<published>` |
2023-10-18 11:13:54 +00:00
| 2. `datetime` attribute of the first `<time>` element | |
| 3. file creation date, retrieved from the server | |
| | |
| 1. `class="p-summary"` | `<summary>` |
| 2. `<meta property="description">` | |
| | |
| 1. `class="e-content"` | `<content>` |
| 2. `<article>` | |
| | |
| 1. /path/to/blog/entry | `<id>` and `<link rel="alternate">` |
5. save all of the above into a new file named **articles.xml** (default name, but can be changed).
2023-10-17 14:12:52 +00:00
2023-10-18 07:03:14 +00:00
## ways to use
- configure a cron job on your web server to run automatically every now and then.
- if you manage your site with cPanel, [here's how to do that](https://docs.cpanel.net/cpanel/advanced/cron-jobs/).
2023-10-17 14:43:00 +00:00
2023-10-18 07:03:14 +00:00
- run the script locally on your machine.
- you can open the file on a local server like [five server](https://marketplace.visualstudio.com/items?itemName=yandeu.five-server) for vscode or [XAMPP](https://www.apachefriends.org/index.html).
2023-10-18 14:06:29 +00:00
- or if PHP is installed on your system, simply open the file from the command line:
```bash
php /path/to/feed_generator.php
```
2023-10-17 14:43:00 +00:00
2023-10-18 07:03:14 +00:00
## example output
2023-10-17 14:43:00 +00:00
feel free to check out [the resulting file](https://jasm1nii.xyz/blog/articles/articles.xml) that i've generated.
2023-10-18 07:03:14 +00:00
## alternatives
- [cjwainwright/FeedGenerator](https://github.com/cjwainwright/FeedGenerator)