summary refs log tree commit diff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rwxr-xr-xetc/gitea2mastodon.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/etc/gitea2mastodon.rb b/etc/gitea2mastodon.rb
deleted file mode 100755
index 950a881b..00000000
--- a/etc/gitea2mastodon.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/env ruby
-require 'cgi'
-require 'json'
-require 'mastodon'
-
-require_relative 'secret'
-
-cgi = CGI.new
-begin
-	payload = JSON.parse(cgi.params['payload'].first)
-rescue
-	cgi.out('status' => 'BAD_REQUEST', 'type' => 'text/plain') { 'bad' }
-	exit
-end
-if payload['secret'] != GITEA_SECRET
-	cgi.out('status' => 'FORBIDDEN', 'type' => 'text/plain') { 'no' }
-	exit
-end
-
-client = Mastodon::REST::Client.new(
-	base_url: MASTODON_URL,
-	bearer_token: MASTODON_TOKEN,
-)
-
-payload['commits'].reverse.each do |commit|
-	next unless commit['message'].include?("\n\n")
-	message = commit['message']
-		.split("\n\n")
-		.map {|p| p.split("\n").join(' ') }
-		.join("\n")
-	client.create_status("🚽 #{message}\n#{commit['url']}")
-end
-
-cgi.out('text/plain') { 'ok' }
eJune McEnroe 2019-12-30Normalize date inputJune McEnroe Mostly this just allows the use of 'now'. 2019-12-30Add initial rough version of scoopJune McEnroe 2019-12-30Join with USING wherever possibleJune McEnroe 2019-12-30Add -D flag to prospective scoop manualJune McEnroe 2019-12-30Order results by ID in outer query in litterboxJune McEnroe 2019-12-30Use X macro for Type enumJune McEnroe 2019-12-30Remove scoop -ABCJune McEnroe I can almost get these to work with an inner and outer SQL query, but when contexts starts overlapping it becomes a disaster, so I'm leavin it out at least for now. 2019-12-30Add limit option for litterbox's search query interfaceJune McEnroe