refactor: [FC-0047] fix review issues

This commit is contained in:
Іван Нєдєльніцев
2024-08-09 12:50:46 +03:00
parent 9a0734b280
commit 9d0c45680e
3 changed files with 20 additions and 18 deletions

View File

@@ -76,9 +76,7 @@ class ReportedContentNotification(BaseMessageType):
class CommentNotification(BaseMessageType):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.options['transactional'] = True
pass
@shared_task(base=LoggedTask)

View File

@@ -19,7 +19,11 @@ from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase
import openedx.core.djangoapps.django_comment_common.comment_client as cc
from common.djangoapps.student.tests.factories import CourseEnrollmentFactory, UserFactory
from lms.djangoapps.discussion.signals.handlers import ENABLE_FORUM_NOTIFICATIONS_FOR_SITE_KEY
from lms.djangoapps.discussion.tasks import _is_first_comment, _should_send_message, _track_notification_sent
from lms.djangoapps.discussion.tasks import (
_is_first_comment,
_should_send_message,
_track_notification_sent,
)
from openedx.core.djangoapps.ace_common.template_context import get_base_template_context
from openedx.core.djangoapps.content.course_overviews.tests.factories import CourseOverviewFactory
from openedx.core.djangoapps.django_comment_common.models import ForumsConfig
@@ -342,7 +346,7 @@ class TaskTestCase(ModuleStoreTestCase): # lint-amnesty, pylint: disable=missin
})
should_email_send = _is_first_comment(comment_dict['id'], thread['id'])
assert should_email_send is False
assert not should_email_send
assert not self.mock_ace_send.called
def test_subcomment_should_not_send_email(self):

View File

@@ -125,7 +125,7 @@ def get_user_email_language(user):
return UserPreference.get_value(user, LANGUAGE_KEY)
def enroll_email(course_id, student_email, auto_enroll=False, email_students=False, email_params=None, language=None):
def enroll_email(course_id, student_email, auto_enroll=False, email_students=False, message_params=None, language=None):
"""
Enroll a student by email.
@@ -134,7 +134,7 @@ def enroll_email(course_id, student_email, auto_enroll=False, email_students=Fal
if auto_enroll is set, then when the email registers, they will be
enrolled in the course automatically.
`email_students` determines if student should be notified of action by email.
`email_params` parameters used while parsing email templates (a `dict`).
`message_params` parameters used while parsing message templates (a `dict`).
`language` is the language used to render the email.
returns two EmailEnrollmentState's
@@ -142,8 +142,8 @@ def enroll_email(course_id, student_email, auto_enroll=False, email_students=Fal
"""
previous_state = EmailEnrollmentState(course_id, student_email)
enrollment_obj = None
if email_params:
email_params.update({
if message_params:
message_params.update({
'app_label': 'instructor',
'push_notification_extra_context': {
'notification_type': 'enroll',
@@ -168,22 +168,22 @@ def enroll_email(course_id, student_email, auto_enroll=False, email_students=Fal
enrollment_obj = CourseEnrollment.enroll_by_email(student_email, course_id, course_mode)
if email_students:
email_params['message_type'] = 'enrolled_enroll'
email_params['email_address'] = student_email
email_params['user_id'] = previous_state.user.id
email_params['full_name'] = previous_state.full_name
send_mail_to_student(student_email, email_params, language=language)
message_params['message_type'] = 'enrolled_enroll'
message_params['email_address'] = student_email
message_params['user_id'] = previous_state.user.id
message_params['full_name'] = previous_state.full_name
send_mail_to_student(student_email, message_params, language=language)
elif not is_email_retired(student_email):
cea, _ = CourseEnrollmentAllowed.objects.get_or_create(course_id=course_id, email=student_email)
cea.auto_enroll = auto_enroll
cea.save()
if email_students:
email_params['message_type'] = 'allowed_enroll'
email_params['email_address'] = student_email
message_params['message_type'] = 'allowed_enroll'
message_params['email_address'] = student_email
if previous_state.user:
email_params['user_id'] = previous_state.user.id
send_mail_to_student(student_email, email_params, language=language)
message_params['user_id'] = previous_state.user.id
send_mail_to_student(student_email, message_params, language=language)
after_state = EmailEnrollmentState(course_id, student_email)