-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom_installer.py
116 lines (96 loc) · 4.29 KB
/
atom_installer.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
# Author: Ahmed Husam Elsers
# Email: [email protected]
# This is a Python3 script to install/upgrade Atom for Linux (Fedora, Ubuntu)
# Check The Host Linux Distro (Fedora/Ubuntu)
# Check if Atom installed or Not
# If Installed:
# check the latest version on Atom web page
# then compare it to installed
# if latest > installed:
# upgrade()
# if latest == installed:
# inform and exit
# If Not Installed:
# download()
# install()
import os
import platform
import re
import subprocess
import sys
import urllib.request
def check_linux_distro():
if platform.architecture()[0] == '64bit':
if 'fedora' in (platform.platform()).lower():
linux_distro = 'fedora'
if 'ubuntu' or 'debian' in (platform.platform()).lower():
linux_distro = 'ubuntu'
return linux_distro
else:
print("Sorry, Unsupported Linux Distro.")
sys.exit(1)
def atom_latest(atom_base_url, atom_latest_url, linux_distro):
try:
with urllib.request.urlopen(atom_latest_url) as atom_urlopened:
atom_url_read = str(atom_urlopened.read())
latest_version_num = re.search(
r"/atom/atom/releases/tag/v([\w.]+)", atom_url_read).group(1)
if linux_distro == 'fedora':
rpm_link = atom_base_url + \
re.search(r"/atom/atom/releases/download/v{0}/atom[.-]+[^\d][a-zA-Z\d_]+[.]{1}".format(
latest_version_num, 'rpm'), atom_url_read).group()
return rpm_link, latest_version_num
if linux_distro == 'ubuntu':
deb_link = atom_base_url + \
re.search(r"/atom/atom/releases/download/v{0}/atom[.-]+[^\d][a-zA-Z\d_]+[.]{1}".format(
latest_version_num, 'deb'), atom_url_read).group()
return deb_link, latest_version_num
except:
print("Atom website is not reachable!!")
print("Please Check Your Internet Connection.")
sys.exit(1)
def atom_installed(linux_distro):
try:
if linux_distro == 'fedora':
installed_status = subprocess.getstatusoutput('rpm -q atom')[0]
if installed_status == 0:
installed_version = re.search(
r"atom-([\d.]+)-\w+", subprocess.getoutput('rpm -q atom')).group(1)
if linux_distro == 'ubuntu':
installed_status = subprocess.getstatusoutput('dpkg -s atom')[0]
if installed_status == 0:
installed_version = re.search(
r"Version: ([\d.]+)", subprocess.getoutput('dpkg -s atom')).group(1)
return (True, installed_version)
except:
return (False, '')
def get_atom_install(linux_distro, atom_link):
if linux_distro == 'fedora':
subprocess.run(['wget', '-c', atom_link, '-O', os.path.join('/tmp/', os.path.basename(atom_link))])
subprocess.run(['sudo', 'dnf', '-y', 'install', os.path.join('/tmp/', os.path.basename(atom_link))])
print("Thank You for using my Script.")
if linux_distro == 'ubuntu':
subprocess.run(['wget', '-c', atom_link, '-O', os.path.join('/tmp/', os.path.basename(atom_link))])
subprocess.run(['sudo', 'dpkg', '-i', os.path.join('/tmp/', os.path.basename(atom_link))])
print("Thank You for using my Script.")
def main():
try:
atom_base_url = 'https://github.com'
atom_latest_url = 'https://github.com/atom/atom/releases/latest'
linux_distro = check_linux_distro()
atom_link_pkgver_latest = atom_latest(atom_base_url, atom_latest_url, linux_distro)
is_atom_installed = atom_installed(linux_distro)
if is_atom_installed[0]:
if atom_link_pkgver_latest[1] > is_atom_installed[1]:
get_atom_install(linux_distro, atom_link_pkgver_latest[0])
if atom_link_pkgver_latest[1] == is_atom_installed[1]:
print("You already have atom latest installed, Good for You.")
print("Thank You for using my Script.")
sys.exit(0)
else:
get_atom_install(linux_distro, atom_link_pkgver_latest[0])
except KeyboardInterrupt:
print("\nIt seems you entered Ctl-C, run the script again when you ready.")
print("Thank You anyway.")
if __name__ == '__main__':
main()