This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/fpaste b/fpaste | |
index 7a2eefe..d33461a 100755 | |
--- a/fpaste | |
+++ b/fpaste | |
@@ -20,7 +20,7 @@ VERSION = '0.3.8.1' | |
USER_AGENT = 'fpaste/' + VERSION | |
SET_DESCRIPTION_IF_EMPTY = 1 # stdin, clipboard, sysinfo | |
# FPASTE_URL = 'http://fpaste.org/' | |
-FPASTE_URL = 'http://paste.fedoraproject.org/' | |
+FPASTE_URL = 'http://modernpaste.fedorainfracloud.org/api/paste' | |
import os | |
import sys | |
@@ -28,6 +28,7 @@ import urllib.request | |
import urllib.parse | |
import urllib.error | |
import subprocess | |
+import time | |
import json | |
from optparse import OptionParser, OptionGroup, SUPPRESS_HELP | |
@@ -121,12 +122,11 @@ def paste(text, options): | |
if len(author) > 50: | |
author = author[0:50-3] + "..." | |
- params = urllib.parse.urlencode( | |
- {'paste_lang': options.lang, 'paste_data': text, 'paste_private': | |
- options.make_private, 'paste_expire': options.expires, | |
- 'paste_password': options.password, 'paste_user': author, 'api_submit' | |
- : 'true', 'mode': 'json'}) | |
- pasteSizeKiB = len(params)/1024.0 | |
+ data = json.dumps( | |
+ {'language': options.lang, 'contents': text, | |
+ 'expiry_time': int(options.expires) + int(time.time()), | |
+ 'password': options.password}).encode('utf8') | |
+ pasteSizeKiB = len(data)/1024.0 | |
# 512KiB appears to be the current hard limit (20110404); old limit was | |
# 16MiB | |
@@ -144,10 +144,11 @@ def paste(text, options): | |
return [False, False] | |
req = urllib.request.Request( | |
- url=options.url, | |
- data=params.encode(), | |
+ url=options.url + '/submit', | |
+ data=data, | |
headers={ | |
- 'User-agent': USER_AGENT}) | |
+ 'User-agent': USER_AGENT, | |
+ 'Content-Type': 'application/json'}) | |
if options.proxy: | |
if options.debug: | |
print("Using proxy: %s" % options.proxy, file=sys.stderr) | |
@@ -174,42 +175,14 @@ def paste(text, options): | |
file=sys.stderr) | |
return [False, False] | |
- if 'error' in response['result']: | |
- error = response['result']['error'] | |
- if error == 'err_spamguard_php': | |
- print( | |
- "Error: Poster's IP address is listed as malicious", | |
- file=sys.stderr) | |
- elif error == 'err_spamguard_noflood': | |
- print("Error: Poster is trying to flood", file=sys.stderr) | |
- elif error == 'err_spamguard_stealth': | |
- print( | |
- "Error: The paste triggered the spam filter", | |
- file=sys.stderr) | |
- elif error == 'err_spamguard_ipban': | |
- print("Error: Poster's IP address is banned", file=sys.stderr) | |
- elif error == 'err_author_numeric': | |
- print( | |
- "Error: Poster's alias should be alphanumeric", | |
- file=sys.stderr) | |
- else: | |
- print("Error: %s" % error, file=sys.stderr) | |
- sys.exit(-1) | |
- | |
- id = [i[1]["id"] for i in response.items()].pop() | |
-# for k,j in i.iteritems(): | |
-# print j, k | |
- if options.make_private == 'yes': | |
- private_hash = [i[1]["hash"] for i in response.items()].pop() | |
- url = "{0}{1}/{2}".format(options.url, id, private_hash) | |
- else: | |
- url = "{0}{1}".format(options.url, id) | |
+ url = response['url'] | |
- short_url = get_shortened_url(url, options.password) | |
- if short_url: | |
- return [url, short_url] | |
- else: | |
- return [url, False] | |
+ #short_url = get_shortened_url(url, options.password) | |
+ #if short_url: | |
+ # return [url, short_url] | |
+ #else: | |
+ # return [url, False] | |
+ return [url, False] | |
def sysinfo( | |
@@ -565,7 +538,6 @@ def main(): | |
"z80", | |
"zxbasic"] | |
validClipboardSelectionOpts = ['primary', 'secondary', 'clipboard'] | |
- validPrivateOpts = ['yes', 'no'] | |
ext2lang_map = { | |
'sh': 'bash', | |
'bash': 'bash', | |
@@ -635,13 +607,6 @@ Examples: | |
', '.join(validExpiresOpts), | |
metavar='EXPIRES') | |
fpasteOrg_group.add_option( | |
- '-P', | |
- '--private', | |
- help='make paste private; default is %default; valid options: ' + | |
- ', '.join(validPrivateOpts), | |
- dest='make_private', | |
- metavar='"PRIVATE"') | |
- fpasteOrg_group.add_option( | |
'-U', | |
'--URL', | |
help='URL of fpaste server; default is %default', | |
@@ -725,10 +690,9 @@ Examples: | |
parser.set_defaults( | |
nick='', | |
lang='text', | |
- make_private='yes', | |
expires='2592000', | |
selection='primary', | |
- password='', | |
+ password=None, | |
url=FPASTE_URL) | |
(options, args) = parser.parse_args() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment