1
0
Fork 0

Add media:content to atom feed

This commit is contained in:
Harm te Molder 2022-12-29 21:26:31 +01:00
parent 6165f509cf
commit 023fe60ce5
No known key found for this signature in database
GPG Key ID: 74A98B5EEF1920BA
1 changed files with 22 additions and 18 deletions

View File

@ -3,30 +3,34 @@
'<?xml version="1.0" encoding="UTF-8"?>'.PHP_EOL
?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
<id>{{$permalink}}</id>
<title>{{$profile['username']}} on Pixelfed</title>
<subtitle type="html">{{$profile['note']}}</subtitle>
<updated>{{$profile['created_at']}}</updated>
<author>
<uri>{{$profile['url']}}</uri>
<name>{{$profile['url']}}</name>
</author>
<link rel="alternate" type="text/html" href="{{$profile['url']}}"/>
<link rel="self" type="application/atom+xml" href="{{$permalink}}"/>
@foreach($items as $item) <entry>
<title>{{ $item['content'] ? strip_tags($item['content']) : "No caption" }}</title>
<link rel="alternate" href="{{ $item['url'] }}" />
<id>{{$permalink}}</id>
<title>{{$profile['username']}} on Pixelfed</title>
<subtitle type="html">{{$profile['note']}}</subtitle>
<updated>{{$items[0]['created_at']}</updated>
<author>
<name>{{$profile['username']}}</name>
<uri>{{$profile['url']}}</uri>
</author>
<link rel="alternate" type="text/html" href="{{$profile['url']}}"/>
<link rel="self" type="application/atom+xml" href="{{$permalink}}"/>
@foreach($items as $item)
<entry>
<id>{{ $item['url'] }}</id>
<title>{{ $item['content_text'] ? $item['content_text'] : "No caption" }}</title>
<updated>{{ $item['created_at'] }}</updated>
<author>
<name> <![CDATA[{{ $profile['username'] }}]]></name>
<name>{{$profile['username']}}</name>
<uri>{{$profile['url']}}</uri>
</author>
<summary type="html">
<content type="html">
<![CDATA[
<img id="rss_item_{{$loop->iteration}}" src="{{ $item['media_attachments'][0]['url'] }}" alt="{{ $item['media_attachments'][0]['description'] }}">
<p style="padding:10px;">{{ $item['content'] }}</p>
]]>
</summary>
<updated>{{ $item['created_at'] }}</updated>
]]>
</content>
<link rel="alternate" href="{{ $item['url'] }}" />
<summary>{{ $item['content'] }}</summary>
<media:content url="{{ $item['media_attachments'][0]['url'] }}" type="image/png" medium="image">
</entry>
@endforeach
</feed>