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

Responder table endpoints #13

Open
BrianHGrant opened this issue Mar 7, 2017 · 1 comment
Open

Responder table endpoints #13

BrianHGrant opened this issue Mar 7, 2017 · 1 comment

Comments

@BrianHGrant
Copy link
Member

BrianHGrant commented Mar 7, 2017

Responder does not have a single primary key field but has composite key of incident_id and responder_id, what is best path for representing this as model and as a retrieve endpoint?

Current model, which works for list method:

class Responder(models.Model):
    incident_id = models.IntegerField(primary_key=True)
    responder_id = models.IntegerField()
    responderunit = models.ForeignKey('ResponderUnit', models.DO_NOTHING, blank=True, null=True)
    codetosc = models.IntegerField(blank=True, null=True)

    class Meta:
        managed = False
        db_table = 'responder'
        unique_together = [
            ('incident_id', 'responder_id'),
        ]

This fails though when using a generics.RetrieveAPIView, as an attempt to retrieve a responder instance based on primary key will return many when the get() method is expecting a single instance.

A possible solution is to keep current model and build custom endpoint that will expect multiple responses for the single endpoint.

@futurechris
Copy link

I think we discussed this in the meeting last night, but just to document here: Since our data is static, we thought it might be easiest to solve this hackishly, by creating an intermediate table that converts the composite key into a single key.

The responder info will need to be accessible via API one way or another, eventually. We may not need it (via API) for the demo and 'bagel shop incident' projects, though.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants