Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 6

Practical No: 5

Date: 12/04/2023
Aim: Building ASP.Net core REST API

Description:

ASP.NET Core is a modern, cross-platform framework for building web


applications, including RESTful APIs. REST (Representational State Transfer)
is a software architectural style that defines a set of constraints for creating web
services. RESTful APIs are a popular approach for creating web services that
conform to these constraints, making them simple, scalable, and loosely
coupled.

ASP.NET Core REST APIs use HTTP methods (GET, POST, PUT, DELETE)
to perform CRUD (Create, Read, Update, Delete) operations on resources
exposed by the API. The framework provides an easy way to build APIs with
features such as routing, input validation, and serialization of JSON/XML data.

The API can be consumed by clients such as web applications, mobile apps, or
other services. Clients send requests to the API and receive responses in the
requested format. The responses can be in JSON, XML, or other formats. APIs
can also provide authentication and authorization mechanisms to control access
to resources.

Overall, ASP.NET Core REST APIs are a powerful and flexible way to build
modern web services that can be consumed by a wide range of clients. With its
rich features and cross-platform support, ASP.NET Core is a popular choice for
developing RESTful APIs in the .NET ecosystem.

1
Roll No: 22306A1024 Name: Arman Khan
Code & Output:

Open two command prompts

Command prompt 1:
> dotnet new webapi -o Glossary
> cd Glossary
> dotnet run

Command Prompt 2:
> curl --insecure http://localhost:5001/weatherforecast
>

Now Change the content:


To get started, remove the WeatherForecast.cs file from the root of the
project and the WeatherForecastController.cs file from the Controllers
folder. Add Following two files

D:\Glossary\GlossaryItem.cs
namespace Glossary
{
public class GlossaryItem
{
public string Term { get; set; }
public string Definition { get; set; }
}
}

2
Roll No: 22306A1024 Name: Arman Khan
D:\Glossary\Controllers\ GlossaryController.cs
using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using System.IO;

namespace Glossary.Controllers
{
[ApiController]
[Route("api/[controller]")]
public class GlossaryController : ControllerBase
{
private static List<GlossaryItem> Glossary = new List<GlossaryItem>
{
new GlossaryItem
{
Term= "HTML",
Definition = "Hypertext Markup Language"
},
new GlossaryItem
{
Term= "MVC",
Definition = "Model View Controller"
},
new GlossaryItem
{
Term= "OpenID",
Definition = "An open standard for authentication"
}
};

[HttpGet]
public ActionResult<List<GlossaryItem>> Get()
{
return Ok(Glossary);
}

[HttpGet]
[Route("{term}")]
public ActionResult<GlossaryItem> Get(string term)
{
var glossaryItem = Glossary.Find(item =>

3
Roll No: 22306A1024 Name: Arman Khan
item.Term.Equals(term,
StringComparison.InvariantCultureIgnoreCase));
if (glossaryItem == null)
{
return NotFound();
}
else
{
return Ok(glossaryItem);
}
}

[HttpPost]
public ActionResult Post(GlossaryItem glossaryItem)
{
var existingGlossaryItem = Glossary.Find(item =>
item.Term.Equals(glossaryItem.Term,
StringComparison.InvariantCultureIgnoreCase));
if (existingGlossaryItem != null)
{
return Conflict("Cannot create the term because it already exists.");
}
else
{
Glossary.Add(glossaryItem);
var resourceUrl = Path.Combine(Request.Path.ToString(),
Uri.EscapeUriString(glossaryItem.Term));
return Created(resourceUrl, glossaryItem);
}
}

[HttpPut]
public ActionResult Put(GlossaryItem glossaryItem)
{
var existingGlossaryItem = Glossary.Find(item =>
item.Term.Equals(glossaryItem.Term,
StringComparison.InvariantCultureIgnoreCase));
if (existingGlossaryItem == null)
{
return BadRequest("Cannot update a non-existing term.");
}
else
{

4
Roll No: 22306A1024 Name: Arman Khan
existingGlossaryItem.Definition = glossaryItem.Definition;
return Ok();
}
}

[HttpDelete]
[Route("{term}")]
public ActionResult Delete(string term)
{
var glossaryItem = Glossary.Find(item =>
item.Term.Equals(term,
StringComparison.InvariantCultureIgnoreCase));
if (glossaryItem == null)
{
return NotFound();
}
else
{
Glossary.Remove(glossaryItem);
return NoContent();
}}}}

5
Roll No: 22306A1024 Name: Arman Khan
Now stop running previous dotnet run on command prompt 1 using
Ctrl+C. and Run it again for new code.

On Command prompt1:
> dotnet run

Command prompt 2:

Getting a list of items:


> curl --insecure http://localhost:5092/api/glossary

Getting a single item


> curl --insecure http://localhost:5092/api/glossary/MVC

Creating an item
> curl --insecure -X POST -d "{\"term\": \"MFA\", \"definition\":\"An
authentication process.\"}" -H "Content-Type:application/json"
http://localhost:5092/api/glossary

Update Item
> curl --insecure -X PUT -d "{\"term\": \"MVC\", \"definition\":\"Modified
record of Model View Controller.\"}" -H "Content-Type:application/json"
http://localhost:5092/api/glossary

Delete Item
> curl --insecure --request DELETE --url
http://localhost:5092/api/glossary/openid

6
Roll No: 22306A1024 Name: Arman Khan

You might also like