DEV Community

Cover image for Writing Simple RestAPI in Nim With HappyX #3
Ethosa
Ethosa

Posted on

3

Writing Simple RestAPI in Nim With HappyX #3

Hi there πŸ‘‹!

Previously we add posts getting πŸ™‚.

Now we implement post adding ✌.

At first go into src/main.nim and add Request Model

import
  # This will import HappyX framework
  happyx

# Request model AddPost
# with two string fields
model AddPost:
  title: string
  text: string
Enter fullscreen mode Exit fullscreen mode

After this let's create post addition method 🍍

  # on POST HTTP method at 127.0.0.1:5000/post/
  post "/post/[postData:AddPost]":
Enter fullscreen mode Exit fullscreen mode

Here we use AddPost as postData immutable var 🎈

Let's add sended post into posts variable

  # on POST HTTP method at 127.0.0.1:5000/post/
  post "/post/[postData:AddPost]":
    posts.add(%*{
      "title": postData.title,
      "text": postData.text
    })
Enter fullscreen mode Exit fullscreen mode

Here we convert AddPost model to JsonNode object and add it into our posts

Let's says user about post successfully added into our posts ✨
Just add return statement

  # on POST HTTP method at 127.0.0.1:5000/post/
  post "/post/[postData:AddPost]":
    posts.add(%*{
      "title": postData.title,
      "text": postData.text
    })
    return {"response": {
      "index": posts.len - 1
    }}
Enter fullscreen mode Exit fullscreen mode

You can test it into postman ✌
URL: http://localhost:5000/post/
Method: POST
JSON raw body:

{"title": "Your title", "text": "your text"}
Enter fullscreen mode Exit fullscreen mode

And try to open http://localhost:5000/posts after adding post πŸ‘€

That's all! Good luck ✨

Source code

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

Top comments (2)

Collapse
 
tinkerbaj profile image
tinkerbaj β€’

Do you have discord server?

Collapse
 
ethosa profile image
Ethosa β€’

nope, only discord profile

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay