diff --git a/maloja b/maloja index 196f8d7..2dca8d7 100755 --- a/maloja +++ b/maloja @@ -20,6 +20,10 @@ recommendedmodules = [ SOURCE_URL = "https://github.com/krateng/maloja/archive/master.zip" +def blue(txt): return "\033[94m" + txt + "\033[0m" +def green(txt): return "\033[92m" + txt + "\033[0m" +def yellow(txt): return "\033[93m" + txt + "\033[0m" + def gotodir(): if os.path.exists("./server.py"): return True @@ -32,9 +36,37 @@ def gotodir(): def setup(): - print("Make sure to add your Last.FM api key in a file called 'apikey' to your main directory if you want to see images.") - print("Visit http://localhost:42010 to see your web interface. If you get an error, you probably don't have any scrobbles yet. This will be fixed later.") + # LASTFM API KEY + if os.path.exists("./apikey"): + with open("apikey","r") as keyfile: + apikey = keyfile.read().replace("\n","") + + if apikey == "NONE": print("Currently not using an API key for image display. Only local images will be used.") + else: + print("Please enter your Last.FM API key. If you do not want to display artist and track images, simply leave this empty and press Enter.") + key = input() + if key == "": key = "NONE" + with open("apikey","w") as keyfile: + keyfile.write(key) + + # OWN API KEY + if os.path.exists("./clients/authenticated_machines.tsv"): + pass + else: + print("Do you want to set up a key to enable scrobbling? Your scrobble extension needs that key so that only you can scrobble tracks to your database. [Y/n]") + answer = input() + if answer.lower() in ["y","yes","yea","1","positive","true",""]: + import random + key = "" + for i in range(64): + key += str(random.choice(list(range(10)) + list("abcdefghijklmnopqrstuvwxyz") + list("ABCDEFGHIJKLMNOPQRSTUVWXYZ"))) + print("Your API Key: " + yellow(key)) + with open("./clients/authenticated_machines.tsv","w") as keyfile: + keyfile.write(key + "\n" + "Default Generated Key") + elif answer.lower() in ["n","no","nay","0","negative","false"]: + pass + #file is generated my server itself if not found def install(): toinstall = [] @@ -73,7 +105,7 @@ def install(): print("Attempt to install required modules? [Y/n]") answer = input() - if answer.lower() in ["y","yes","yea","1","positive","true"]: + if answer.lower() in ["y","yes","yea","1","positive","true",""]: for m in neededmodules: try: print("Installing " + m + " with pip...") @@ -114,12 +146,10 @@ def install(): if fail: return False print("All modules successfully installed!") - setup() return True else: print("All necessary modules seem to be installed.") - setup() return True @@ -139,8 +169,14 @@ def start(): if install(): if gotodir(): + setup() p = subprocess.Popen(["python3","server.py"],stdout=subprocess.DEVNULL,stderr=subprocess.DEVNULL) - print("Maloja started! PID: " + str(p.pid)) + print(green("Maloja started!") + " PID: " + str(p.pid)) + + print("Visit your server address (Port 42010) to see your web interface. Visit /setup to get started.") + print("If you're installing this on your local machine, these links should get you there:") + print("\t" + blue("http://localhost:42010")) + print("\t" + blue("http://localhost:42010/setup")) return True #else: # os.chdir("/opt/maloja/") @@ -217,7 +253,7 @@ def update(): if __name__ == "__main__": - if sys.argv[1] == "start": start() + if sys.argv[1] == "start": restart() elif sys.argv[1] == "restart": restart() elif sys.argv[1] == "stop": stop() elif sys.argv[1] == "update": update() diff --git a/website/issues.html b/website/issues.html index 6bd1236..9853bdc 100644 --- a/website/issues.html +++ b/website/issues.html @@ -16,7 +16,7 @@ with your library

KEY_ISSUES Issues

-

Maloja can identify possible problems with consistency or redundancy in your library. After making any changes, you should rebuild your library.
+

Maloja can identify possible problems with consistency or redundancy in your library. After making any changes, you should rebuild your library.
Your API key is required to make any changes to the server:

diff --git a/website/maloja.css b/website/maloja.css index abaee5e..8effa9a 100644 --- a/website/maloja.css +++ b/website/maloja.css @@ -12,6 +12,10 @@ a { text-decoration:none; } +a.textlink { + color:gold; +} + a:hover { text-decoration:underline; } diff --git a/website/setup.html b/website/setup.html new file mode 100644 index 0000000..490ac6b --- /dev/null +++ b/website/setup.html @@ -0,0 +1,92 @@ + + + + + + Maloja - Setup + + + + + + + + + + + + + + +
+
+
+

Maloja


+ +

Welcome to your own Maloja server!

+
+ +

Start Scrobbling

+ + If you use Vivaldi, Brave, Iridium or any other Chromium-based browser and listen to music on Plex, download the extension and simply enter the server URL as well as your API key in the relevant fields. They will turn green if the server is accessible. +

+ If you use another browser or another music player, you could try to code your own extension. The API is super simple! Just send a POST HTTP request to + + yourserver.tld/db/newscrobble + + (make sure to use the public URL) with the key-value-pairs +
+
+ + + + + + +
artist Artist String
title Title String
key API Key
seconds Duration of Scrobble - optional and currently not used
+
+ +

+ +

Import your Last.FM data

+ + Switching from Last.fm? Download all your data and place the resulting file in your Maloja main folder. Run the command ./lastfmconverter.py (the file you just downloaded) lastfmimport.tsv. +

+ +

Set up some rules

+ + After you've scrobbled for a bit, you might want to check the Issues page to see if you need to set up some rules. You can also manually add rules in your server's "rules" directory - just add your own .tsv file and read the instructions on how to declare a rule. +

+ +

Say thanks

+ + Coding open source projects is fun, but not really monetizable. If you like Maloja, I would appreciate a small donation via + PayPal or Bitcoin. + +

+ +

View your stats

+ + Done! Visit yourserver.tld (or your public / proxy URL) to look at your overview page. Almost everything is clickable! + + +