mash/main.py

161 lines
6.0 KiB
Python
Raw Normal View History

#!/usr/bin/python
2024-07-05 09:42:14 +10:00
# Imports, of course.
# You'll need to install colorama from Pip if you want to use colours in the terminal. I'm probably going to replace this when I get around to making a config file properly.
2024-07-03 12:08:56 +10:00
import os
import socket
2024-07-03 12:08:56 +10:00
import subprocess
import shutil
2024-07-05 09:42:14 +10:00
import curses
2024-07-05 09:26:10 +10:00
from datetime import datetime
from colorama import Fore
2024-07-04 09:49:07 +10:00
from os.path import expanduser
2024-07-03 12:08:56 +10:00
2024-07-05 09:42:14 +10:00
# Some initial variables
2024-07-04 09:49:07 +10:00
version = "0.1.0"
2024-07-03 13:31:27 +10:00
user = os.getlogin()
2024-07-04 09:49:07 +10:00
initDirectory = expanduser("~")
currentDirectory = initDirectory
argList = ["", ""]
2024-07-05 09:42:14 +10:00
# Start work on checking whether a config file exists
2024-07-10 19:04:37 +10:00
if os.path.isfile(expanduser("~") + "/.config/mash/mash.conf") == False:
print("Config file does not exist. Copying default file to ~/.config/mash/mash.conf")
shutil.copyfile("/etc/mash/mash.conf", (expanduser("~") + "/.config/mash/mash.conf"))
2024-07-10 19:04:37 +10:00
# Parse config file, adding variables
configFileFile = open((expanduser("~") + "/.config/mash/mash.conf"))
configFile = configFileFile.read()
confArgNumber = 0
confArgList = ["", ""]
for line in configFile:
for letter in line:
if letter == ' ':
confArgNumber = confArgNumber + 1
2024-07-11 09:05:38 +10:00
elif letter == ',':
confArgList.append(",")
confArgNumber = confArgNumber + 1
2024-07-10 19:04:37 +10:00
else:
try:
confArgList[confArgNumber] = confArgList[confArgNumber] + letter
except Exception:
confArgList.append(letter)
print(confArgList)
2024-07-11 09:05:38 +10:00
for word in confArgList:
if "\n" in word:
confArgList[confArgList.index(word)] = word.replace("\n", "")
print(confArgList)
2024-07-10 19:04:37 +10:00
2024-07-05 09:42:14 +10:00
# Write the time to the history file
2024-07-05 09:26:10 +10:00
historyFile = open((expanduser("~") + "/.history.mash"), "a")
historyFile.write("\n")
historyFile.write(("Session on " + str(datetime.now())))
historyFile.write("\n")
2024-07-05 09:42:14 +10:00
# Welcome message. Probably going to be configurable soon enough.
2024-07-04 09:49:07 +10:00
print("Welcome to Mash, " + user + "@" + socket.gethostname() + "! Mash is currently on version " + version)
2024-07-05 09:42:14 +10:00
# Main loop.
try:
while True:
2024-07-05 09:42:14 +10:00
# Set directory and prompt for input.
2024-07-04 09:49:07 +10:00
os.chdir(currentDirectory)
command = input(Fore.GREEN + user + Fore.WHITE + "@" + socket.gethostname() + Fore.BLUE + " " + currentDirectory + Fore.WHITE + " > ")
2024-07-05 09:42:14 +10:00
# Clean some things up for the argument parser.
argNumber = 0
argList.clear()
2024-07-05 09:42:14 +10:00
# Argument parser
for letter in command:
if letter == " ":
argNumber = argNumber + 1
else:
try:
argList[argNumber] = argList[argNumber] + letter
except Exception:
argList.append(letter)
2024-07-05 09:42:14 +10:00
# Start work on pipes.
2024-07-05 09:26:10 +10:00
for word in argList:
if word == "&&":
print("This hasnt been implemented yet hahahahah")
2024-07-10 19:04:37 +10:00
elif word == "&":
print("This hasnt been implemented yet heheheheh")
elif word == "|":
print("What are you? A pipe master? We dont like those people here")
2024-07-05 09:42:14 +10:00
# Built in commands section
if argList[0] == "help":
2024-07-03 14:46:40 +10:00
print("This is Mash, Max's Shell. Mash has a few built in commands, which you can use to run commands, view files and interact with your system.")
print("Some commands you can run:")
print("")
print("cd Change your directory.")
2024-07-05 09:42:14 +10:00
print("history See previously ran commands.")
print("mat View contents of a file. If you're on a Unix-like OS, use 'cat' instead.")
print("mls View all files in a directory. If you're on a Unix-like OS, use 'ls' instead.")
2024-07-03 14:46:40 +10:00
print("version Print current version of Mash.")
print("exit Exit Mash.")
print("")
print("You can also run commands installed by your system. See your OS's documentation for more information.")
elif argList[0] == "exit":
exit()
elif argList[0] == "version":
print(version)
elif argList[0] == "mat":
matFile = open(argList[1])
print(matFile.read())
elif argList[0] == "mls":
2024-07-04 17:20:49 +10:00
try:
if argList[1] == "":
print(os.listdir(currentDirectory))
else:
argList[1] = mlsDirectory
if mlsDirectory[0] == "/":
print(os.listdir(mlsDirectory))
else:
print(os.listdir(currentDirectory + "/" + mlsDirectory))
except Exception:
print(os.listdir(currentDirectory))
2024-07-04 09:49:07 +10:00
elif argList[0] == "cd":
try:
directoryForCD = argList[1]
if directoryForCD[0] == "~":
currentDirectory = expanduser("~") + directoryForCD.replace("~", "")
if directoryForCD[0] == "/":
currentDirectory = directoryForCD
else:
currentDirectory = (currentDirectory + "/" + directoryForCD)
except Exception:
print("Either a directory was not provided or an error occured.")
2024-07-05 09:26:10 +10:00
elif argList[0] == "history":
historyReadFile = open((expanduser("~") + "/.history.mash"))
print(historyReadFile.read())
elif argList[0] == "mtime":
print(datetime.now())
2024-07-10 19:04:37 +10:00
elif argList[0] == "printconf":
print(configFile)
2024-07-05 09:42:14 +10:00
# If a built in command isn't what you wanted, run a new subprocess.
else:
try:
subprocess.run(argList)
except Exception:
print("Command", command, "either doesn't exist, isn't in the path or isn't in this directory.")
2024-07-05 09:26:10 +10:00
2024-07-05 09:42:14 +10:00
# Write to the history file
2024-07-05 09:26:10 +10:00
historyFile = open((expanduser("~") + "/.history.mash"), "a")
historyFile.write(command)
historyFile.write("\n")
historyFile.close()
2024-07-05 09:42:14 +10:00
# Handle errors in the main loop
except Exception:
print("Looks like there was an error. Exiting...")
# Handle ^C
except KeyboardInterrupt:
print(" detected! Exiting...")