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

Integrate ORM Approach for Enhanced Management of POSTs #68

Open
MHHukiewitz opened this issue Oct 23, 2023 · 1 comment
Open

Integrate ORM Approach for Enhanced Management of POSTs #68

MHHukiewitz opened this issue Oct 23, 2023 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@MHHukiewitz
Copy link
Member

Problem Statement

Currently, our SDK handles messages and POSTs without utilizing an Object-Relational Mapping (ORM) approach. While this method is functional, it lacks some of the user-friendly, dynamic features that an ORM could provide.

Motivation

An ORM layer would make it easier for developers to interact with POSTs, particularly when it comes to unique functionalities like amendments and revisions. It could also pave the way for more advanced features without adding complexity to the API. The feature is already effectively implemented in the Active Record SDK and can offer insights into implementation here.

Proposed Solution

Integrate an ORM layer into the SDK for handling POSTs:

  • Offer a simplified syntax for operations like create, read, update, and delete (CRUD).
  • Provide an easy way to navigate through past revisions of a POST.
  • Allow dynamic amendments to POSTs, making the system more adaptable.

Example Use-Case

A developer wants to amend a POST. Instead of navigating through complex APIs or writing cumbersome code, they could simply execute something like:

post = await Post.find(item_hash)  # can fetch directly through HTTPS or from local cache
post.content = { "foo": "bar" }
await post.save()  # Post is now being amended

This automatically handles amendments and keeps track of past revisions.

Additional Context: Program/Instance Messages

Additionally, building on this, we can also introduce ORM behavior for PROGRAM and INSTANCE messages. There, we could directly integrate all the actions a user can execute on such VMs:

instance = Instance.find(item_hash)
if instance.errors:
    await instance.restart()  # trigger a restart
@MHHukiewitz MHHukiewitz self-assigned this Oct 23, 2023
@MHHukiewitz MHHukiewitz added the enhancement New feature or request label Oct 23, 2023
@hoh
Copy link
Member

hoh commented Oct 23, 2023

Can you display examples of the cumbersome code equivalent ?

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

No branches or pull requests

2 participants