By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 celery_tasks.py

View raw Download
text/x-script.python • 2.01 kiB
Python script, ASCII text executable
        
            
1
import time
2
import os
3
import config
4
import email_send
5
from celery import shared_task
6
from app import db
7
from misc_utils import *
8
from models import *
9
from smtplib import SMTP
10
11
12
@shared_task(ignore_result=False)
13
def send_notification(notification_id, users, level):
14
notification = db.session.get(Notification, notification_id)
15
16
for user in users:
17
db.session.add(UserNotification(db.session.get(User, user), notification, level))
18
19
if db.session.get(User, user).email:
20
with (SMTP(config.MAIL_SERVER) as mail):
21
if notification.data.get("type") == "welcome":
22
message = ("Subject:Welcome"
23
+ email_send.render_email_template("welcome.html", username=user))
24
mail.sendmail(
25
config.NOTIFICATION_EMAIL,
26
db.session.get(User, user).email,
27
message,
28
)
29
db.session.commit()
30
31
return 0 # notification sent successfully
32
33
34
@shared_task(ignore_result=False)
35
def merge_heads(head_route, head_branch, base_route, base_branch):
36
server_repo_location = os.path.join(config.REPOS_PATH, base_route.lstrip("/"))
37
if not os.path.isdir(server_repo_location):
38
raise FileNotFoundError(f"Repo {server_repo_location} not found, cannot merge.")
39
40
if base_route == head_route:
41
git_command(server_repo_location, b"", "checkout", f"{base_branch}")
42
out, err = git_command(server_repo_location, b"", "merge", "--no-ff", f"heads/{head_branch}", return_err=True)
43
44
return out, err
45
46
remote_url = os.path.join(config.BASE_DOMAIN, "git", base_route.lstrip("/"))
47
48
git_command(server_repo_location, b"", "remote", "add", "NEW", remote_url)
49
git_command(server_repo_location, b"", "remote", "update")
50
git_command(server_repo_location, b"", "checkout", f"{base_branch}")
51
git_command(server_repo_location, b"", "merge", "--allow-unrelated-histories", f"NEW/{head_branch}")
52
git_command(server_repo_location, b"", "remote", "rm", "NEW")
53