Better search function
This commit is contained in:
parent
01c158db6d
commit
38261bb0a2
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
list_alias.py
|
list_alias.py
|
||||||
malias.zip
|
malias.zip
|
||||||
|
malias_local.py
|
36
malias.py
36
malias.py
@ -29,7 +29,7 @@ database = filepath.joinpath('malias.db')
|
|||||||
logfile = filepath.joinpath('malias.log')
|
logfile = filepath.joinpath('malias.log')
|
||||||
Path(filepath).mkdir(parents=True, exist_ok=True)
|
Path(filepath).mkdir(parents=True, exist_ok=True)
|
||||||
logging.basicConfig(filename=logfile,level=logging.INFO,format='%(message)s')
|
logging.basicConfig(filename=logfile,level=logging.INFO,format='%(message)s')
|
||||||
app_version = '0.1'
|
app_version = '0.2'
|
||||||
|
|
||||||
|
|
||||||
def connect_database():
|
def connect_database():
|
||||||
@ -294,12 +294,38 @@ def check_local_db(alias_id):
|
|||||||
|
|
||||||
|
|
||||||
def search(alias):
|
def search(alias):
|
||||||
results = checklist(alias)
|
apikey = get_api()
|
||||||
mail_server = get_settings('mail_server')
|
mail_server = get_settings('mail_server')
|
||||||
if results == True:
|
cursor = conn.cursor()
|
||||||
print('\n\nThe mail address %s exists. Using the mailcow instance : %s\n\n'%(alias,mail_server))
|
cursor.execute('SELECT data_copy FROM settings where id = 1')
|
||||||
|
result = cursor.fetchone()[0]
|
||||||
|
if result == 1:
|
||||||
|
search_term = '%'+alias+'%'
|
||||||
|
cursor.execute('SELECT * from aliases where alias like ? or goto like ?',(search_term,search_term,))
|
||||||
|
remoteData = cursor.fetchall()
|
||||||
|
i = 0
|
||||||
|
print('\nAliases on %s that contains %s' %(mail_server,alias))
|
||||||
|
print('=================================================================')
|
||||||
|
for search in remoteData:
|
||||||
|
the_alias = remoteData[i][1].ljust(20,' ')
|
||||||
|
print(the_alias + '\tgoes to\t\t' + remoteData[i][2])
|
||||||
|
i=i+1
|
||||||
|
print('\n\nData from local DB')
|
||||||
else:
|
else:
|
||||||
print('\n\nThe mail address %s [b]does not[/b] exists. Using the mailcow instance : %s\n\n'%(alias,mail_server))
|
req = urllib.request.Request('https://'+mail_server+'/api/v1/get/alias/all')
|
||||||
|
req.add_header('Content-Type', 'application/json')
|
||||||
|
req.add_header('X-API-Key', apikey)
|
||||||
|
current = urllib.request.urlopen(req)
|
||||||
|
remote = current.read().decode('utf-8')
|
||||||
|
remoteData = json.loads(remote)
|
||||||
|
i = 0
|
||||||
|
print('\nAliases on %s that contains %s' %(mail_server,alias))
|
||||||
|
print('=================================================')
|
||||||
|
for search in remoteData:
|
||||||
|
if alias in remoteData[i]['address'] or alias in remoteData[i]['goto']:
|
||||||
|
print(remoteData[i]['address'] + '\tgoes to\t\t' + remoteData[i]['goto'])
|
||||||
|
i=i+1
|
||||||
|
print('\n\nData from server')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user