123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534 |
- #####################################################################
- # #
- # THIS IS A SOURCE CODE FILE FROM A PROGRAM TO INTERACT WITH THE #
- # LBRY PROTOCOL ( lbry.com ). IT WILL USE THE LBRY SDK ( lbrynet ) #
- # FROM THEIR REPOSITORY ( https://github.com/lbryio/lbry-sdk ) #
- # WHICH I GONNA PRESENT TO YOU AS A BINARY. SINCE I DID NOT DEVELOP #
- # IT AND I'M LAZY TO INTEGRATE IN A MORE SMART WAY. THE SOURCE CODE #
- # OF THE SDK IS AVAILABLE IN THE REPOSITORY MENTIONED ABOVE. #
- # #
- # ALL THE CODE IN THIS REPOSITORY INCLUDING THIS FILE IS #
- # (C) J.Y.Amihud and Other Contributors 2021. EXCEPT THE LBRY SDK. #
- # YOU CAN USE THIS FILE AND ANY OTHER FILE IN THIS REPOSITORY UNDER #
- # THE TERMS OF GNU GENERAL PUBLIC LICENSE VERSION 3 OR ANY LATER #
- # VERSION. TO FIND THE FULL TEXT OF THE LICENSE GO TO THE GNU.ORG #
- # WEBSITE AT ( https://www.gnu.org/licenses/gpl-3.0.html ). #
- # #
- # THE LBRY SDK IS UNFORTUNATELY UNDER THE MIT LICENSE. IF YOU ARE #
- # NOT INTENDING TO USE MY CODE AND JUST THE SDK. YOU CAN FIND IT ON #
- # THEIR OFFICIAL REPOSITORY ABOVE. THEIR LICENSE CHOICE DOES NOT #
- # SPREAD ONTO THIS PROJECT. DON'T GET A FALSE ASSUMPTION THAT SINCE #
- # THEY USE A PUSH-OVER LICENSE, I GONNA DO THE SAME. I'M NOT. #
- # #
- # THE LICENSE CHOSEN FOR THIS PROJECT WILL PROTECT THE 4 ESSENTIAL #
- # FREEDOMS OF THE USER FURTHER, BY NOT ALLOWING ANY WHO TO CHANGE #
- # THE LICENSE AT WILL. SO NO PROPRIETARY SOFTWARE DEVELOPER COULD #
- # TAKE THIS CODE AND MAKE THEIR USER-SUBJUGATING SOFTWARE FROM IT. #
- # #
- #####################################################################
- # This file is a set of variables used by different files. It's needed
- # so I will not need to hard code the values each time. Stuff like
- # basic translations of the LBRY data into human language. And a more
- # complex functions like translating size in bytes into something more
- # readable.
- # Colors are used to make the
- clr = {
- "norm":"\033[00m", # Reset to normal
- "bold":"\033[01m", # Bold Text
- "ital":"\033[03m", # Italic Text
- "undr":"\033[04m", # Underlined
- "blnk":"\033[05m", # Blinking
-
- # Text
- "tdbl":"\033[30m", # Dark Black
- "tdrd":"\033[31m", # Dark Red
- "tdgr":"\033[32m", # Dark Green
- "tdyl":"\033[33m", # Dark Yellow
- "tdbu":"\033[34m", # Dark Blue
- "tdma":"\033[35m", # Dark Magenta
- "tdcy":"\033[36m", # Dark Cyan
- "tdwh":"\033[37m", # Dark White
-
- "tbbl":"\033[90m", # Bright Black
- "tbrd":"\033[91m", # Bright Red
- "tbgr":"\033[92m", # Bright Green
- "tbyl":"\033[93m", # Bright Yellow
- "tbbu":"\033[94m", # Bright Blue
- "tbma":"\033[95m", # Bright Magenta
- "tbcy":"\033[96m", # Bright Cyan
- "tbwh":"\033[97m", # Bright White
- # Background
- "bdbl":"\033[40m", # Dark Black
- "bdrd":"\033[41m", # Dark Red
- "bdgr":"\033[42m", # Dark Green
- "bdyl":"\033[43m", # Dark Yellow
- "bdbu":"\033[44m", # Dark Blue
- "bdma":"\033[45m", # Dark Magenta
- "bdcy":"\033[46m", # Dark Cyan
- "bdwh":"\033[47m", # Dark White
-
- "bbbl":"\033[100m", # Bright Black
- "bbrd":"\033[101m", # Bright Red
- "bbgr":"\033[102m", # Bright Green
- "bbyl":"\033[103m", # Bright Yellow
- "bbbu":"\033[104m", # Bright Blue
- "bbma":"\033[105m", # Bright Magenta
- "bbcy":"\033[106m", # Bright Cyan
- "bbwh":"\033[108m" # Bright White
- }
- # A function that insures a specific width of the printed part
- def wdth(x, n):
- # Just in case...
- x = str(x)
- # Some characters are too wide. They do not obey the
- # monospace of the terminal, thus making it not pretty.
- # This is the string of characters which are checked to
- good = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ йцукенгшщзхъфывапролджэячсмитьбюЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮёЁ"
- # let's filter the string
- y = x
- x = ""
- for i in y:
- if i in good:
- x = x + i
- else:
- x = x + "▓"
-
- # Now let's print what we've got.
- if len(y) < n:
- x = (" "*(n-len(y)))+x
- elif len(y) > n:
- if n > 10:
- x = x[:n-3]+"..."
- else:
- x = x[:n]
-
- return x
- # A dictionary for translations of things from the SDK into
- # readable thing
- what = {
- "stream":"FILE",
- "repost":"SHARED",
- "channel": "CHANNEL",
- "collection": "PLAYLIST",
- "video":"VIDEO",
- "audio":"SOUND",
- "document":"TEXT",
- "binary":"FILE",
- "image":"PICTURE"
- }
- # This function will take a list and present in a pretty
- # way.
- def tgz(x):
- # Just in case
- if type(x) != list:
- x = x.split()
- y = ""
- for i in x:
- y = y + i + ", "
- return y[:-2]
- # This function will convert bites into readable data making sense
- def csize(x):
- x = float(x)
-
- l = ["B","KB", "MB", "GB", "TB"]
- for i in range(5):
- if x > 1024:
- x = x / 1024
- else:
- return str(round(x, 2))+" "+l[i]
- return str(round(x, 2))+" "+l[i]
- # This next function will select the amount of ::: for a given
- # input.
- def typing_dots():
- import inspect
- depth = len(inspect.stack()) # This is the depth of the stack
- # since this function call adds 1 to the stack we need
- # to decrease the number by one
- depth -= 1
- # Now I want to select a sequence of colors.
- x = ["bdma","bdbu", "bdrd", "bdgr", "bdcy", "bdyl"]
- ret = " "+clr["bold"]
- for i in reversed(range(depth)):
- ret = ret + clr["tbwh"] + clr[x[i % len(x)]] + ":"
- ret = ret + clr["norm"]+" "
-
- return ret
- def tsize():
- # This funtion will get the size of the terminal and
- # return it to the variables provided width, height
- # On some systems this may not work. So there is a
- # try function.
- try:
- # Getting the size of the terminal
- import os
- w, h = os.get_terminal_size()
- # Sometimes when the terminal width is either
- # even or odd. It breaks code for some other
- # thing written differenly. For example:
- # You may have an even width ( like 84 ) when
- # writing a function. And then it works on different
- # widths as well like 62 and 80 and 48. All of them
- # are still even. Then you scale the terminal to be
- # something off like 63 and the function breaks. You
- # have one character too much or one character too little.
- # This is why I do not want to have a difference. And
- # force width to be one less, if it's not divisible by 2.
-
- if not w % 2:
- w = w - 1
-
- return w, h
- except:
- # If, by any reason the terminal can't get it's size.
- # We want to return some size regardless.
- w = 60
- h = 20
- return w, h
-
- def logo():
- # This function will draw a pretty FastLBRY logo to the user
- # at startup.
-
- # Getting terminal size
- w, h = tsize()
-
- if w > 50:
-
- l = []
- l.append( "█▓▓█▓▓▓▓▓▓█▓██▓▓▓▓▓▓▓█▓▓▓▓▓▓█▓▓▓▓██▓▓▓▓█▓▓▓▓█" )
- l.append( "▓▒▒▒▒▒▒▒▓▒▒▒▒▒▒▒▓▓▒▒▒▒▒▒▒▒▒▓▒▒▒▒▒▒▒▒▒▓▒▒▒▒▓▒▓" )
- l.append( "██░░░▒░░░░░░▒░░░░░░░▒░░░░░░░░░▒░░▒░░░░░░░░▒▓▓" )
- l.append( "▓▓░ ░ ░ ░ ■ ■░░▒▓" )
- l.append( "▓▒▒ ╔════════■ ░ ╔════╗ ╔════╗ ║ ░ ║ ░▓█" )
- l.append( "▓▒░ ║ ░ ║ ║ ║ ║ ║ ║ ║ ░▒▓" )
- l.append( "█▓░░║ ║ ╠════╣ ╠═╦══╝ ╚══╦══╝ ▒▒▓" )
- l.append( "▓▒▒ ╠══ AST ■║ ║ ║ ║ ╚══╗ ║ ░░▒█" )
- l.append( "█▒░ ║ ║ ║ ║ ║ ║ ║ ░▓▓" )
- l.append( "▓▓░ ║ ░ ╚═════■╚════╝ ■ ■ ░ ║ ░ ░▒▓" )
- l.append( "▓▒░░║ ░ THE TERMINAL CLIENT ║ ▒▒█" )
- l.append( "█▒▒ ■ ░ ░ ■ ▒░ ░▓▓" )
- l.append( "▓▒░░░░░░░▒░░░░▓░░░░░▒░░░░░░░░░▒░░░░▒░░░░░░░▒█" )
- l.append( "▓▓▒▒▒▒▓▒▒▒▒▒▓▒▒▒▒▓▒▒▓▒▒▒▒▒▒▒▓▓▒▒▒▒▒▒▓▒▒▒▒▒▓▓▓" )
- l.append( "█▓▓█▓▓▓▓▓████▓▓▓▓█▓▓▓▓█▓▓▓▓██▓▓▓█▓▓▓▓▓█▓▓▓▓██" )
- print(" "+clr["bdma"]+(" "*(w-8))+clr["norm"])
- # I want to fill the width of the terminal around the logo
- # with a texture. But since it's text based I will need to
- # code a texture into it. I can use the blocks seen below
- # and select randomly between them.
- # You can see I included multiple of darkest block and
- # almost non bright blocks. This will increase the
- # probability of the dark blocks.
-
- block = "████████▓▓▓▒" #for the random to choose
- import random
- # Now let's output
-
- for i in l:
- f = "" # Texture fill string.
- # Fill the f string with random blocks
- for g in range(int(w/2-27)):
- f = f + random.choice(block)
- # Print a line with random filler and the line it self.
- print (" "+clr["bdma"]+" "+clr["norm"]+f+i+f+clr["bdma"]+" "+clr["norm"])
-
-
- else:
- center( "FastLBRY")
- center( "terminal")
- center("---type 'help' to see list of features---")
-
- def table(data, number=True):
-
- # This function will present data in a pretty table thing.
- # So let's first of all get the size of the terminal
- w, h = tsize()
- if number:
- w = w - 4
-
- # Then let's draw the categories for this we need to extract
- # it's sizes. If there is no 'size' variable the sizes of
- # each category will be spread equally.
- size = [] # Here the size will go as pure character value.
-
- if "size" in data:
- for i in data["size"]:
- size.append(int(( w - 10 ) / sum(data["size"]) * i))
- while sum(size) < w - 10:
- size[-1] += 1
-
- # printing categories
- nb = ""
- if number:
- nb = " "
- s = " "+clr["bdma"]+" "+clr["tbwh"]+nb
-
- for n, item in enumerate(data["categories"]):
- s = s + wdth(item.upper(), size[n])
- print(s+clr["bdma"]+" "+clr["norm"])
- size[-1] += 1
-
- # printing items
- for b, i in enumerate(data["data"]):
- # dark bright sequence thingy
- if b % 2:
- d = "b"
- else:
- d = "d"
- nb = ""
- if number:
- nb = clr["tbwh"]+wdth(b,4)
- s = " "+clr["bdma"]+" "+nb+clr["norm"]+clr["b"+d+"bu"]+clr["tbwh"]
- for n, item in enumerate(i):
- s = s +clr["b"+d+"bu"]+ wdth(item, size[n]-1)+clr["bdma"]+" "
- print(s+clr["norm"])
-
- def center(line, c="bdma", blink=False):
-
- # This funtiocn will bring a given string of text
- # in the center of the terminal with a nice backgroud
- # around it.
-
- w, h = tsize()
- if blink:
- blink = clr["blnk"]
- else:
- blink = ""
-
- if len(line) % 2:
- line = line + " "
- if len(line) < w - 11:
- print(" "+clr[c],
- wdth(" ", int((w-10)/2 - (len(line)/2))),
- clr["bold"]+clr["tbwh"]+blink+line,
- wdth(" ", int((w-10)/2 - (len(line)/2))-1),
- clr["norm"])
- else:
- print(" "+clr[c],
- clr["bold"]+clr["tbwh"]+blink+wdth(line,w-10),
- clr["norm"])
-
- def timestring(tleft):
-
- # This crazy function will convert the microsecond into something
- # a bit more usefull. Like 03:20:90.06 Kind a thing.
-
- tleftX = tleft
-
- tleft = int(tleftX)
-
- addend = tleftX - tleft
-
-
- valt = str(tleft)
-
- if tleft > 60 :
- le = tleft
- tleft = int(tleft / 60)
- le = le - int(tleft * 60)
-
- stleft = "0"*(2-len(str(tleft)))+str(tleft)
- sle = "0"*(2-len(str(le)))+str(le)
-
- valt = stleft+":"+ sle
-
- if tleft > 60 :
- lele = le
- le = tleft
- tleft = int(tleft / 60)
- le = le - int(tleft * 60)
- lele = (lele - le)
- if lele < 0:
- lele = int(lele * -1)
-
- stleft = "0"*(2-len(str(tleft)))+str(tleft)
- sle = "0"*(2-len(str(le)))+str(le)
- slele = "0"*(2-len(str(lele)))+str(lele)
-
- valt = stleft+":"+ sle + ":" + slele
-
- if tleft > 24 :
- le = tleft
- tleft = int(tleft / 24)
- le = le - int(tleft * 24)
- valt = str(tleft)+" DAYS AND "+ str(le) + " HRS"
- return valt + "." + str(int(addend*100))
- # This a list of known licenses, info a and links
- licenses = [
- # NAME , URL , COMMENT
- ["GNU General Public License Version 3 (or later)",
- "https://www.gnu.org/licenses/gpl-3.0.html",
- "Strong Copyleft. Recommended for Software."],
- ["GNU General Public License Version 3 (only)",
- "https://www.gnu.org/licenses/gpl-3.0.html",
- "Strong Copyleft."],
- ["GNU Free Documentation License",
- "https://www.gnu.org/licenses/fdl-1.3.html",
- "Strong Copyleft. Recommended for books."],
- ["Creative Commons Attribution-ShareAlike 4.0 International",
- "https://creativecommons.org/licenses/by-sa/4.0/",
- "Copylefted, Recommended for Art."],
- ["Creative Commons Attribution 4.0 International",
- "https://creativecommons.org/licenses/by/4.0/",
- "Non Copylefted, Free License."],
- ["Creative Commons Zero 1.0 International",
- "https://creativecommons.org/publicdomain/zero/1.0/",
- "Public Domain"],
- ["Creative Commons Attribution-NoDerivatives 4.0 International",
- "https://creativecommons.org/licenses/by-nd/4.0/",
- "Does not allow changes. Recommended for opinion pieces."]
- ]
- def progress_bar(now, total, name=""):
- # This function will draw a pretty progress bar that fills up
- # one problem. It requires an empty print line after it. Or it
- # will start printing whatever in the same line as the progress
- # bar.
- # dimensions
- w, h = tsize()
- fullw = w - 8
- # string
- string = " "+str(int(round(now/total*100)))+"% "+str(now)+" / "+str(total)+" "+name
- string = string+" "*(fullw-len(string))
-
-
- howfar = int(round(fullw / total * now))
- pstring = clr["tbwh"]+clr["bold"]+clr["bdcy"]+string[:howfar]+clr["bdma"]+string[howfar:]
-
-
- print("\r "+pstring, end=clr["norm"])
- # We need a system of auto-filling commands. As well as a history type thing.
- # so people could come back to a previous command by pressing the up arrow.
- # Now all systems will have readline since it's a GNU package
- def complete(commands):
- try:
- import readline
- # Then we need to specify a function for completion
- def completer(text, state):
- options = [i for i in commands if i.startswith(text)]
- if state < len(options):
- return options[state]
- else:
- return None
- # And we need to setup the completer
- readline.parse_and_bind("tab: complete")
- readline.set_completer(completer)
-
- except Exception as e:
- center("Auto-completer error: "+str(e), "bdrd")
- # List of web instances of LBRY
- web_instances = [
- ["Odysee", "https://odysee.com/", "LBRY Inc.", "JavaScript"],
- ["Madiator", "https://madiator.com/", "Madiator2011", "JavaScript"],
- ["Spee.ch", "https://spee.ch/", "LBRY Inc.", "Direct Files"]
- ]
- def file_or_editor(args, comment):
- # We gonna check if dunring typing reply the user added
- # anything after the word reply.
- # reply emacs
- # reply gedit
- # reply vim
- # Or something like
- # reply /home/username/filename.txt
- # reply /home/username/filename.md
- # That might be useful to input multiline text.
- import os
- a = args.split()[0]
- a = os.path.expanduser(a)
- try:
- text = open(a, "r")
- text = text.read()
- except:
- text = open("/tmp/fastlbrycommentwriter.txt", "w")
- text.write(comment)
- text.close()
- os.system(a+" /tmp/fastlbrycommentwriter.txt")
- center("Press Enter when the file is ready and saved.")
- input()
- text = open("/tmp/fastlbrycommentwriter.txt", "r")
- text = text.read()
- return text.rstrip()
|