Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ce/connect messaging #35364

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open

Ce/connect messaging #35364

wants to merge 9 commits into from

Conversation

calellowitz
Copy link
Contributor

@calellowitz calellowitz commented Nov 14, 2024

Product Description

This adds connect messaging as a new message type in the messaging framework. It does not currently support form sessions although I will add those prior to merge. That said, I wanted to open this up to review now since it is quite large and touches a fair amount of complex code.

Technical Summary

Tech Spec: https://docs.google.com/document/d/1FgsXr0PLR7Btq2fOBeXIMs_OziBRsUsATgHgWna0h5M/edit?tab=t.0#heading=h.3rzu21agk2m3
Design Doc: https://docs.google.com/document/d/1h3bcZ4oQAnOu5aGW8Rue0TnbiaW2OXWMaqNKwI6RciE/edit?tab=t.0#heading=h.ipgou4bu0qoj

The linked docs provide much of the context

Feature Flag

COMMCARE_CONNECT for now, but I expect to migrate it to its own flag so that it can be enabled independently of the rest of the connect features.

Safety Assurance

Safety story

Existing messaging paths have automated coverage, and are only minimally modified. The new code is almost entirely self contained and will go through a QA process.

Automated test coverage

QA Plan

No QA ticket yet since it is not finished, but I will add it once it starts.

Migrations

  • The migrations in this code can be safely applied first independently of the code

Rollback instructions

  • This PR can be reverted after deploy with no further considerations

Labels & Review

  • Risk label is set correctly
  • The set of people pinged as reviewers is appropriate for the level of risk of the change

@dimagimon dimagimon added the reindex/migration Reindex or migration will be required during or before deploy label Nov 14, 2024
@calellowitz calellowitz added the product/feature-flag Change will only affect users who have a specific feature flag enabled label Nov 14, 2024
@calellowitz calellowitz force-pushed the ce/connect-messaging branch 2 times, most recently from 6a953fa to f22c90d Compare November 14, 2024 21:06
@@ -174,7 +182,7 @@ def send_sms(domain, contact, phone_number, text, metadata=None, logged_subevent
return queue_outgoing_sms(msg)


def send_sms_to_verified_number(verified_number, text, metadata=None, logged_subevent=None, events=None):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is referenced in https://github.com/dimagi/commcare-hq/blob/master/docs/messaging/outbound_sms.rst, can you update that? It'd probably be helpful to update those docs a bit more holitically, at least to mention that connect messages exist.

@@ -131,6 +132,13 @@ def get_sms_class():
return QueuedSMS if settings.SMS_QUEUE_ENABLED else SMS


def get_message_class(phone_number):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What would you think of inlining get_sms_class into this function? Seems a little nicer to have calling code always use this function instead of needing to know when to call this vs get_sms_class.

from django.db import migrations, models
import uuid

class Migration(migrations.Migration):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's standard to squash all the migrations for a single PR, just to reduce the number of migrations in the repo long-term.

class ConnectMessage(Log):
date_modified = models.DateTimeField(null=True, db_index=True, auto_now=True)
text = models.CharField(max_length=300)
received_on = models.DateTimeField(null=True, blank=True)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why would this be blank/null? I'd expected this to default to now.

@property
@abstractmethod
def backend(self):
pass
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can these raise NotImplementedErrors, or does this being an abstract class take care of complaining if a subclass doesn't implement all of the necessary methods?

@@ -513,9 +520,9 @@ def get_layout_fields(self):
data_bind='with: message',
),
data_bind=(
"visible: $root.content() === '%s' || $root.content() === '%s' "
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A f string would make this a whole lot better.

@@ -534,10 +541,11 @@ def get_layout_fields(self):
),
data_bind=(
"visible: $root.content() === '%s' || $root.content() === '%s' "
"|| $root.content() === '%s' "
"|| $root.content() === '%s' || $root.content() === '%s' "
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment about f strings.

@@ -1757,6 +1770,10 @@ def create_form_helper():
def form_choices(self):
return [(form['code'], form['name']) for form in get_form_list(self.domain)]

@property
def can_use_connect(self):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nitpick: is this better than just having the calling code check the feature flag?

@@ -405,3 +407,19 @@ def user_can_access_domain_specific_pages(request):
return False

return couch_user.is_member_of(project) or (couch_user.is_superuser and not project.restrict_superusers)


def connectid_token_auth(view_func):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's weird that connectid is one word. I do see that it's consistent.

preserve_default=False,
),
migrations.AddField(
model_name='connectmessagesurveycontent',
name='form_unique_id',
field=models.CharField(default=1, max_length=126),
field=models.CharField(default="1", max_length=126),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not just allow this to be blank? Or does 1 have a meaning?

Copy link
Contributor

@snopoke snopoke left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In general this looks good to me but I'm not able to fully review all the implications of the changes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
product/feature-flag Change will only affect users who have a specific feature flag enabled reindex/migration Reindex or migration will be required during or before deploy
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants