summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-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' }
1Add tabular.vimJune McEnroe 2012-02-01Update Vim-Tomorrow-ThemeJune McEnroe 2012-01-30Disable menu bar in GVimJune McEnroe 2012-01-30Set shiftwidth to 4 for LuaJune McEnroe 2012-01-29Don't show Syntastic errors automaticallyJune McEnroe 2012-01-28Update to Quicktask 1.1June McEnroe 2012-01-22Use space-test branch of quicktaskJune McEnroe 2012-01-22Enable syntax-based foldingJune McEnroe 2012-01-22Update quicktaskJune McEnroe 2012-01-22Revert "Add AutoClose"June McEnroe 2012-01-22Revert "Disable powerline for now"June McEnroe 2012-01-22Revert "Add VCS repo directories to wildignore"June McEnroe 2012-01-22Disable powerline for nowJune McEnroe 2012-01-22Update some pluginsJune McEnroe 2012-01-22Add VCS repo directories to wildignoreJune McEnroe 2012-01-22Map ,e and ,b to CtrlP file and buffer respectivelyJune McEnroe 2012-01-22Add vim-spaceJune McEnroe 2012-01-22Add AutoCloseJune McEnroe 2012-01-22Add binding for GundoJune McEnroe 2012-01-22Add GundoJune McEnroe 2012-01-22Add Jellybeans colorschemeJune McEnroe 2012-01-22Add syntasticJune McEnroe 2012-01-21Add PowerlineJune McEnroe 2012-01-21Add quicktaskJune McEnroe 2012-01-15Moved comments out of mapsJune McEnroe 2012-01-14Disable scrollbarsJune McEnroe