Module:Bluesky RSS Feed: Difference between revisions

From NOISZ Wiki
No edit summary
No edit summary
Line 41: Line 41:


for k, v in ipairs(rss) do
for k, v in ipairs(rss) do
if v["description"] and v["pubDate"] and v["link"] and k - 1 <= maxLength then
if v["description"] and v["pubDate"] and v["link"] and #links <= maxLength then
links[v["link"]] = nil
links[v["link"]] = nil



Revision as of 19:02, 6 June 2025

This module is a custom-designed RSS feed, designed to process a Bluesky RSS feed and output it as a template. Up to three search keywords can be input - OR rather than AND - to find posts that mention any of the keywords. A Bluesky RSS feed can be found by going to any user's page, and typing /rss at the end of the URL before hitting enter.

Usage

{{Template:Bluesky RSS Feed
|url= Bluesky RSS feed URL
|term1= Optional search term
|term2= Optional search term
|term3= Optional search term
}}

Example

{{Template:Bluesky RSS Feed
|url=https://bsky.app/profile/did:plc:ve2p3lz33ivtyikqztvsgtx3/rss
|term1=#NOISZ
}}

Will yield:

17 Mar 2026 20:47 +0000
We're taking preorders until 3/29 for a single print run of NOISZ OSTs! These comprise a complete physical set of NOISZ's music, and are available alongside various NOISZ merch (plus GODHAND and Chronal Chain shirts!) #NOISZ merch.anarch.games https://merch.anarch.games

14 Mar 2026 05:29 +0000
We're hearing that some players using Android 16 are having trouble installing 2NDS+ (the NOISZ SL prequel VNs) from Google Play. We're making the .apk permanently available here as we look into a more user-friendly solution. #NOISZ_SL http://anarch.games/starlivht/2nds.apk

13 Mar 2026 01:28 +0000
♦️ Happy birthday to STΔRLIVHT's leader, Sera! The end of a long journey is a new beginning...

Scan the QR code for 24 hours of DIA folder cake mode (bonus EXP/drops)! ♦️ #NOISZ_SL

🎨 @/lilpalette.bsky.social

01 Mar 2026 05:12 +0000
In DEIFIED LINEAGE, experience 5 songs in two very different ways as they transcend the bounds of time. An upcoming DLC pack for NOISZ STΔRLIVHT and PROJEKT GODHAND! #NOISZ_SL #PK_GODHAND




local capiunto = require 'capiunto'
local p = {}

function p.main(frame)

local args = frame:getParent().args
local posts = {}
local links = {}
local searchTerms = {}

if args.maxlength then
    local maxLength = tonumber(args.maxlength)
else
    local maxLength = 30
end
local maxLength = 30
-- 30 is the default

-- These are the search terms as defined in the template.
if args.term1 or args.term2 or args.term3 then
	searchTerms[1] = args.term1
	searchTerms[2] = args.term2
	searchTerms[3] = args.term3
-- If no search terms, then the search terms array is left blank so it'll match everything.
else 
	searchTerms = {""}
end

-- We use externaldata.getWebDate to obtain XML format data from the RSS feed at the URL defined by the user.
local rss = mw.ext.externaldata.getWebData {
    url = args.url
  , data = {pubDate = 'pubDate', description = 'description', link= 'link'}
  , format = 'xml'
}

-- We iterate over every post found in the RSS feed, in chronological order - hence ipairs. We need description, publish date AND link to know that it's a post. Additionally, k has to be more than 1 as the very first post to pop up in an RSS feed is the user bio which is not an actual post. The "links" array is a directory of links that have been processed; if it's already been processed, then it won't be added again. This helps for if there's more than one search term.


-- It's k - 1 to account for the first post being the bsky profile's about.

for k, v in ipairs(rss) do
	if v["description"] and v["pubDate"] and v["link"] and #links <= maxLength then
		links[v["link"]] = nil

-- Search over every search term in the search terms to make sure a post contains that term. If so, we bundle up the information into template form via the frame:expandTemplate method - the "Bluesky RSS Feed Row" template, to be precise - and put it into an incremental table which will later be expanded in full.

		for a, b in pairs(searchTerms) do
			if string.find(v["description"],b) and links[v["link"]] ~= true and k > 1 then
				links[v["link"]] = true
				table.insert(posts, frame:expandTemplate{title = 'Bluesky RSS Feed Row', args = {description = v["description"], pubDate = v["pubDate"], link=v["link"]}})
			end	
		end
	end
end


-- Table.concat to move it from Lua table form to a form the wikitext can use.
return table.concat(posts,"")


end

return p