123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- #####################################################################
- # #
- # 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. #
- # #
- #####################################################################
- import os
- from flbry.variables import *
- from subprocess import *
- ################################################################################
- # Markdown. Or .md file format is an easy way to give your simple text documents
- # a bit of flare. Stuff like links, images and quotes are supported. Also bold
- # an italic characters.
- def Open(filename):
-
-
- # This function will parse a Markdown (.md) file into a readable python
- # dictionary object. That you can use for various things.
-
- try:
- md = open(filename)
- md = md.read()
- except:
- print("Failed to load the article!!!")
-
- # Spliting it for the read.
- md = md.split("\n")
-
- # First thing is I was to read the headings and convert it into a tree.
-
-
- tree = []
- indent = 1
- c = []
-
- for line in md:
-
- ty = "text"
- te = line
-
- # Here I want to simply get a type of each line. Later we going to parse
- # the links and other things. But first. Let's parse stuff based on
- # lines.
-
- if line.startswith("#"):
- # The titles of the chapter. The Headers are usually written similar
- # to how here in python you write comments. It's a # , space, and the
- # text.
-
- # The amount of hashes. ## or ### gives different sized text. Officialy
- # it should support up to 6 hashes. ######. But why not make it more
- # just in case.
-
- ty = line.count("#") # This might give bugs
-
- elif line.startswith("> "):
-
- # The > sign in the Markdown language is used for quatations.
-
- ty = "text_c"
-
- tree.append([ty, te+"\n"])
-
- # Now the stage 0 is over and we parsed the basic things. Now is the hard
- # part to parse out all the images and stuff inside them. It's going to be
- # done per part. And we are going to use the same technique I used for the
- # conversion of the legacy projects. See : studio/story.py
-
- # We are going to itterate over each letter. And decide what to do by that
-
- newtree = []
-
- for block in tree:
-
- part = ""
- skip = 0
-
- for n, l in enumerate(block[-1]):
-
- if skip > n:
- continue
-
- part = part + l
-
- # Here we are going to do something if a give condition is met.
- # Usually I gonna do something if [part] ends with a given markdown
- # thing. I don't have a mnual of markdown on me. So please make it
- # more supported. I guess. I might forget things I rarely use.
-
- # Links are made with [stuff you click on](https://example.com)
- # but similar to it. Images are done ![Tooltip](Image.png)
- # and even weirder you can put one into the other. Like
- # [![Tooltip](Image.png)](https://example.com)
- # Which going to give you a clickable image.
-
- # For this version what we are going to do is next.
- # If we got [![ then it's a clickable image
- # If we got ![ then it's just image
- # and if we got [ then it's a link.
-
- if part.endswith("[!["):
-
- # IMAGE LINK
- newtree.append([block[0], part[:-3]])
- tooltip = ""
- imageurl = ""
- url = ""
- t = False
- iu = False
- skip = n
- for le in block[-1][n:]: # For letters in the rest of text
- skip = skip + 1
- if le == "]":
- t = True
- elif le == ")" and t and not iu:
- iu = True
- elif le == ")" and t and iu:
- break
- elif not t:
- tooltip = tooltip +le
- elif t and not iu:
- imageurl = imageurl + le
- else:
- url = url+le
- tooltip = tooltip[tooltip.find("[")+1:]
- imageurl = imageurl[imageurl.find("(")+1:]
- url = url[url.find("(")+1:]
-
- apnd = ["image", "[IMAGE_", imageurl]
- newtree.append(apnd)
-
- apnd = ["link", "_LINK]", url]
-
- newtree.append(apnd)
- part = ""
-
-
- elif part.endswith("!["):
-
- # IMAGE
- newtree.append([block[0], part[:-2]])
-
- tooltip = ""
- url = ""
- t = False
- skip = n
- for le in block[-1][n:]: # For letters in the rest of text
- skip = skip + 1
- if le == "]":
- t = True
- elif le == ")" and t:
- break
- elif not t:
- tooltip = tooltip +le
- else:
- url = url+le
- tooltip = tooltip[tooltip.find("[")+1:]
- url = url[url.find("(")+1:]
- apnd = ["image", "[IMAGE]", url]
- newtree.append(apnd)
-
- part = ""
-
-
- elif part.endswith("[") and not block[-1][n:].startswith('[!['):
-
- # LINK
- newtree.append([block[0], part[:-1]])
-
-
- tooltip = ""
- url = ""
- t = False
- skip = n
- for le in block[-1][n:]: # For letters in the rest of text
- skip = skip + 1
- if le == "]":
- t = True
- elif le == ")" and t:
- break
- elif not t:
- tooltip = tooltip +le
- else:
- url = url+le
- tooltip = tooltip[tooltip.find("[")+1:]
- url = url[url.find("(")+1:]
-
- apnd = ["link", tooltip, url]
- newtree.append(apnd)
-
- part = ""
-
-
-
- # Now I want to deal with `, *, ** and ***. If you want to help me you
- # can implement other types. Such as _, __, ___ and so on. Markdown is
- # a very rich language. I'm going to use the cut down version I see other
- # people use.
- # BTW this is the time. Feb 28. When I switched from Gedit to GNU Emacs.
- # Interesting feeling using this programm. I kind a love it even tho
- # so many stuff in not intuitive. Like saving is not Ctrl - S but
- # Ctrl - X -> Ctrl - S.
- # Things like Alt-; to comment multiple lines at ones is HUGE. Also it
- # was built by programmers for programmers. So it's a very good tool.
- elif part.endswith("**") and not block[-1][n+2:].startswith('*'):
-
- # DOUBLE **
-
- newtree.append([block[0], part[:-2]])
- if block[0] == "text":
- block[0] = "text_b"
- else:
- block[0] = "text"
- part = ""
-
- elif part.endswith("*") and not block[-1][n+1:].startswith('*'):
-
- # SINGLE *
-
- newtree.append([block[0], part[:-1]])
- if block[0] == "text":
- block[0] = "text_i"
- else:
- block[0] = "text"
- part = ""
- elif part.endswith("`"):
-
- # SINGLE `
-
- newtree.append([block[0], part[:-1]])
- if block[0] == "text":
- block[0] = "text_c"
- else:
- block[0] = "text"
- part = ""
-
- newtree.append([block[0], part])
-
-
- newtree.append(["text", "\n"*20+" [END OF DOCUMENT] "])
- tree = newtree
-
- return(tree)
- def search_convert(s):
- # This function convers a chapter name into a link
- # such links are use in notabug.org to link to chapters
- # for example example.com/file.md#chapter-name
- # With this url it will load the example.com/file.md and
- # then skip to the "Chapter Name" chapter.
- # This function transforms "Chapter Name" into "chapter-name"
-
- l = " ./\|[]{}()?!@#$%^&*`~:;'\"=,<>"
- s = s.lower().replace(" ","-")
- r = ""
- for i in s:
- if i not in l:
- r = r + i
- return r
- def draw(filename, title):
- ###########
- # THE FOLLOWING CODE IS VERY DIRTY. I WAS RUNNING OUT OF TIME WHILE IMPLEMENTING
- # IT. PLEASE SEE WHAT CAN BE DONE ABOUT IT. I THINK SOMEBODY NEEDS TO HACK
- # COMMENTS TO IT. SINCE IT COULD BE CONFUSING AS HELL...
- ##########
- # Getting size of the terminal
- try:
- import os
- w, l = os.get_terminal_size()
- if not w % 2: # to solve the tearing when it's a weird amount
- w = w - 1
- l = l - 5
- w = w - 8
-
- except:
- w = 89 # The width of the frame
- l = 20 # Total lines amount possible.
-
-
- # First we want to parse the article
- md = Open(filename)
- # Now we want to print what we have
- # Top banner thingy. Purple with the name of the article.
-
- # Title line
- center(title)
- pline = ""
- lenis = 0
- linen = 0
- colors = {
- "text":clr["norm"]+clr["tbwh"]+clr["bdbu"],
- "text_b":clr["norm"]+clr["bold"]+clr["tbwh"]+clr["bdbu"],
- "text_i":clr["norm"]+clr["ital"]+clr["tbwh"]+clr["bdbu"],
- "text_c":clr["norm"]+clr["tbwh"]+clr["bdgr"],
- "link":clr["norm"]+clr["tbwh"]+clr["bdma"],
- "image":clr["norm"]+clr["tbwh"]+clr["bdcy"]
- }
- # Let's store all the links that the user might want to use
- links = []
- linkn = 0
- linkw = False
-
- for part in md:
- if part[0] in [1,2,3,4,5,6,7]:
- center(part[1].replace("\n", "").replace("#", ""), "bdcy")
- linen = linen + 1
- elif part[1].startswith("---") or part[1].startswith("___"):
- center("═"*(w-12), "bdbu")
- linen = linen + 1
-
- elif part[0] in ["text", "text_b", "text_c", "text_i", "link", "image"]:
-
- if linkw:
- pline = pline + clr["bbma"] + wdth(linkn, 4) + " "
- linkn = linkn + 1
- lenis = lenis + 5
- linkw = False
- pline = pline + colors[part[0]]
-
- for num, letter in enumerate(part[1]):
- br = False
- rest = part[1][num:] # all the rest of the part
- if letter not in [" ", "\n"]:
- pline = pline + letter
- lenis = lenis + 1
- if part[0] in ["link", "image"] and part[2] not in links:
- links.append(part[2])
- linkw = True
-
- elif letter == " ":
-
- if not lenis > w - 20 - len(rest[:rest.replace(" ","_",1).find(" ")]):
- pline = pline + " "
- lenis = lenis + 1
- else:
- br = True
- elif letter == "\n":
- br = True
- if br:
- print(" "+clr["bdbu"]+" "+pline+clr["bdbu"]+wdth("", w-lenis-6)+clr["norm"])
- pline = colors[part[0]]
- lenis = 0
- linen = linen + 1
- # If reached the line number
- if linen >= l:
- center("---type 'more' to continue reading it--- ")
-
- while True:
- c = input(typing_dots())
- if c != "more":
- try:
- c = int(c)
- Popen(['xdg-open',
- links[c].replace("(", "%28").replace(")", "%29")],
- stdout=DEVNULL,
- stderr=STDOUT)
- except:
- return
- elif c == "more":
- links = []
- linkn = 0
- linkw = False
- linen = 0
- center(title)
- break
-
|