-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcppm.py
163 lines (153 loc) · 6.86 KB
/
cppm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
from os.path import expanduser
home = expanduser("~")
print("Importing os module...")
import os
try:
app = 'cmd' if os.name == "nt" else 'sh'
print(f"Loading. Press Ctrl+C to execute {app}.")
print("Importing sys module...")
import sys
print("Importing time module...")
import time
print("Importing gnupg module...")
try:
import gnupg
except ImportError:
print("Package gnupg not installed. Executing pip to request install...")
os.system("python -m pip install gnupg")
print("Attempting import again...")
import gnupg
print("Importing platform module...")
import platform
print("Importing glob module...")
import glob
print("Importing art, requests and colorama modules...")
try:
from art import *
except ImportError:
print("Package art not installed. Executing pip to request install...")
os.system("python -m pip install art")
print("Attempting import again...")
from art import *
try:
from colorama import *
except ImportError:
print("Package colorama not installed. Executing pip to request install...")
os.system("python -m pip install colorama")
print("Attempting import again...")
from colorama import *
try:
import requests
except ImportError:
print("Package requests not installed. Executing pip to request install...")
os.system("python -m pip install requests")
print("Attempting import again...")
import requests
os.system(
'cls' if os.name == "nt" else 'clear'
) # else coloring will obviously not work on windows console host
print(f"{Back.WHITE}{Fore.BLACK}Welcome to CPPM!{Style.RESET_ALL}")
time.sleep(0.5)
print("Launching CPPM...")
except KeyboardInterrupt:
print(
f"You are entering the system command line shell, `{app}'. This is only for advanced users!\nType HELP for a list of commands. If you did not mean to go here, type EXIT."
)
os.system(app)
os.system("python " + __file__)
exit()
print("Type `help' or `?' for command list, type `license' for legal notices")
if not os.path.isdir(f"{home}/cppm-{os.name}"):
print("Setting up. Please wait.")
os.makedirs(f"{home}/cppm-{os.name}")
os.makedirs(f"{home}/cppm-{os.name}/apps")
infofile = open(f"{home}/cppm-{os.name}/info.txt", 'a+') # open file in append mode
infofile.write('This folder describes the files for CPPM.')
infofile.close()
while True:
try:
cmd = input("cppm>")
if cmd == "help" or cmd == "?":
print("install: Install package from the internet")
print("uninstall: Uninstall package")
print("upgrade: Upgrade package from the internet")
print("help: Open this help page")
print("?: alias of help")
print("exit: Exit CPPM and stop it's processes")
print("list: List the packages installed (usally stored in a text file)")
elif cmd == "list":
with open(
os.path.dirname(os.path.realpath(__file__)) + '/pkglist.txt', 'r'
) as reader:
print(reader.read())
elif cmd == "install":
print(
"Usage: install <GitHub repository>\n\nHelps install a package through a GitHub Release. This is so\nCPPM can reject closed-source apps like the old PowerShell (or 'Windows PowerShell').\n\nFor example, to install PowerShell Core (open-source version of Windows PowerShell), run:\n install PowerShell/PowerShell"
)
elif cmd == "exit":
exit()
else:
if (
cmd != ""
and not cmd.startswith("install ")
and not cmd.startswith("upgrade ")
and not cmd.startswith("uninstall ")
):
print(
f"{Fore.RED}Invalid CPPM command `{cmd}'!{Style.RESET_ALL} Type `help' or `?' for a list of commands that\ncan be executed in CPPM."
)
if cmd.startswith("install "):
asset = input("Provide the asset: ")
repo = cmd.replace("install ", "", 1)
os.makedirs(f"{home}/cppm-{os.name}/apps/{repo}")
print("Attempting to get latest GitHub release...")
link = f"https://github.com/{repo}/releases/latest/download/{asset}"
file_name = f"{home}/cppm-{os.name}/apps/{repo}/{asset}"
with open(file_name, "wb") as f:
print("Downloading %s" % asset)
response = requests.get(link, stream=True)
total_length = response.headers.get('content-length')
if total_length is None: # no content length header
f.write(response.content)
else:
dl = 0
total_length = int(total_length)
for data in response.iter_content(chunk_size=4096):
dl += len(data)
f.write(data)
done = int(50 * dl / total_length)
per = int(done * 2)
import os
if (
os.path.exists(f"{dir}/{asset}")
and os.path.getsize(f"{dir}/{asset}") > 25
):
sizedisplay = 1
size = os.path.getsize(f"{dir}/{asset}")
else:
sizedisplay = 0
if sizedisplay:
sys.stdout.write(
"\r%s%s" % ('■' * done, ' ' * (50 - done))
+ f" | {per}% Done ({size} Bytes)"
)
else:
sys.stdout.write(
"\r%s%s" % ('■' * done, ' ' * (50 - done))
+ f" | {per}% Done"
)
sys.stdout.flush()
print("!")
if asset.endswith(".zip"):
print(f"Extracting {asset}...")
import zipfile
with zipfile.ZipFile(
f"{home}/cppm-{os.name}/apps/{repo}/{asset}", 'r'
) as zip_ref:
zip_ref.extractall(f"{home}/cppm-{os.name}/apps/{repo}")
os.unlink(f"{home}/cppm-{os.name}/apps/{repo}/{asset}")
print(
f"Remember to add this package to the PATH using this PowerShell command:\n$env:Path += '{home}/cppm-{os.name}/apps/{repo}'"
)
except KeyboardInterrupt:
print("^C")