summaryrefslogtreecommitdiff
path: root/src/backend/database.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-09-17 19:12:53 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-09-17 19:12:53 +0100
commite1562a71d6483021d332bccbfc5a3086688bc58c (patch)
tree6be3d468e0aadd6c4de6c4dbd7a58ebe9fd59cbb /src/backend/database.py
parent0cf2c9f8ec52b1ae276c1573210d252ab0c4577b (diff)
rearrange the backend
Diffstat (limited to 'src/backend/database.py')
-rw-r--r--src/backend/database.py57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/backend/database.py b/src/backend/database.py
deleted file mode 100644
index e2ad380..0000000
--- a/src/backend/database.py
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/usr/bin/python3
-
-import csv
-import shutil
-import urllib3
-import sqlite3
-import subprocess
-import sisyphus.csvfiles
-import sisyphus.filesystem
-
-def getRemote():
- isPackageCsv,isDescriptionCsv = sisyphus.csvfiles.start()
- http = urllib3.PoolManager()
-
- with http.request('GET', isPackageCsv, preload_content=False) as tmp_buffer, open(sisyphus.filesystem.remotePackagesCsv, 'wb') as output_file:
- shutil.copyfileobj(tmp_buffer, output_file)
-
- with http.request('GET', isDescriptionCsv, preload_content=False) as tmp_buffer, open(sisyphus.filesystem.remoteDescriptionsCsv, 'wb') as output_file:
- shutil.copyfileobj(tmp_buffer, output_file)
-
-def makeLocal():
- subprocess.call(['/usr/share/sisyphus/helpers/make_local_csv'])
-
-def syncRemote():
- getRemote()
-
- sisyphusdb = sqlite3.connect(sisyphus.filesystem.localDatabase)
- sisyphusdb.cursor().execute('''drop table if exists remote_packages''')
- sisyphusdb.cursor().execute('''drop table if exists remote_descriptions''')
- sisyphusdb.cursor().execute('''create table remote_packages (category TEXT,name TEXT,version TEXT,slot TEXT)''')
- sisyphusdb.cursor().execute('''create table remote_descriptions (category TEXT,name TEXT,description TEXT)''')
-
- with open(sisyphus.filesystem.remotePackagesCsv) as input_file:
- for row in csv.reader(input_file):
- sisyphusdb.cursor().execute("insert into remote_packages (category, name, version, slot) values (?, ?, ?, ?);", row)
-
- with open(sisyphus.filesystem.remoteDescriptionsCsv) as input_file:
- for row in csv.reader(input_file):
- sisyphusdb.cursor().execute("insert into remote_descriptions (category, name, description) values (?, ?, ?);", row)
-
- sisyphusdb.commit()
- sisyphusdb.close()
-
-def syncLocal():
- makeLocal()
-
- sisyphusdb = sqlite3.connect(sisyphus.filesystem.localDatabase)
- sisyphusdb.cursor().execute('''drop table if exists local_packages''')
- sisyphusdb.cursor().execute('''create table local_packages (category TEXT,name TEXT,version TEXT,slot TEXT)''')
-
- with open(sisyphus.filesystem.localPackagesCsv) as input_file:
- for row in csv.reader(input_file):
- sisyphusdb.cursor().execute("insert into local_packages (category, name, version, slot) values (?, ?, ?, ?);", row)
-
- sisyphusdb.commit()
- sisyphusdb.close()
-