Giter VIP home page Giter VIP logo

example-jwt's Introduction

Stand With Ukraine


Oat++ Logo

 

oatpp build status Join the chat at https://gitter.im/oatpp-framework/Lobby

Oat++

News

  • ⚠️ Attention! Oat++ main repo is bumping it's version to 1.4.0. While 1.4.0 is IN DEVELOPMENT use 1.3.0-latest tag.

Oat++ is a modern Web Framework for C++. It's fully loaded and contains all necessary components for effective production level development. It's also light and has a small memory footprint.

Start

About

Join Our Community

Quick Overview

Shortcuts:

Build Powerful API And Document It With Swagger-UI

See ApiController for more details.

ENDPOINT_INFO(getUserById) {
  info->summary = "Get one User by userId";

  info->addResponse<Object<UserDto>>(Status::CODE_200, "application/json");
  info->addResponse<Object<StatusDto>>(Status::CODE_404, "application/json");
  info->addResponse<Object<StatusDto>>(Status::CODE_500, "application/json");

  info->pathParams["userId"].description = "User Identifier";
}
ENDPOINT("GET", "users/{userId}", getUserById,
         PATH(Int32, userId))
{
  return createDtoResponse(Status::CODE_200, m_userService.getUserById(userId));
}

Access Databases And Keep Your Data Consistent

See Oat++ ORM for more details.

QUERY(createUser,
      "INSERT INTO users (username, email, role) VALUES (:username, :email, :role);",
      PARAM(oatpp::String, username), 
      PARAM(oatpp::String, email), 
      PARAM(oatpp::Enum<UserRoles>::AsString, role))

Frequently Asked Questions

Q: "Oat++" name?

  • "Oat" is something light, organic, and green. It can be easily cooked and consumed with no effort.
  • "++" gives a hint that it is "something" for C++.

Q: What is the main area of Oat++ application?

Oat++ is used for many different purposes, from building REST APIs that run on embedded devices to building microservices and highly-loaded cloud applications.

But the majority of use cases appears to be in IoT and Robotics.

Q: How portable is Oat++?

Theoretically, Oat++ can be easily ported everywhere where you have threads and network stack. With an additional comparably small effort, it can be ported almost everywhere depending on how much you strip it and what would be the final binary size.

See supported platforms for additional info.

Q: What is the size of a minimal Oat++ application?

About 1Mb, depending on C/C++ std-lib and oatpp version.

Q: Which Oat++ API to choose, Simple or Async?

Always choose Simple API wherever possible. Simple API is more developed and makes the code cleaner.

Async API is designed for small, specific tasks that run at high concurrency levels ex.:

  • Serving file downloads to a large number of concurrent users (1K users and more).
  • Streaming to a large number of clients (1K or more).
  • Websocket Chat servers.

For all other purposes use simple API.

Examples

REST-API

  • REST Service - A complete example of a "CRUD" service (UserService) built with Oat++. REST + Swagger-UI + SQLite.
  • REST Client - Example project of how-to use Retrofit-like client wrapper (ApiClient) and how it works.

WebSocket

  • Can Chat - Feature-complete rooms-based chat for tens of thousands users. Client plus Server.
  • WebSocket - Collection of oatpp WebSocket examples.
  • YUV Websocket Stream - Example project how-to create a YUV image stream from a V4L device (i.E. Webcam) using websockets.

Databases

  • SQLite - A complete example of a "CRUD" service. REST + Swagger-UI + SQLite.
  • PostgreSQL - Example of a production-grade entity service storing information in PostgreSQL. With Swagger-UI and configuration profiles.
  • MongoDB - Example project how to work with MongoDB using oatpp-mongo mondule. Project is a web-service with basic CRUD and Swagger-UI.

IoT

  • Example-IoT-Hue - Example project how-to create an Philips Hue compatible REST-API that is discovered and controllable by Hue compatible Smart-Home devices like Amazon Alexa or Google Echo.

Streaming

  • HTTP Live Streaming Server - Example project on how to build an HLS-streaming server using Oat++ asynchronous API.
  • YUV Websocket Stream - Example project how-to create a YUV image stream from a V4L device (i.E. Webcam) using websockets.

TLS

  • TLS With Libressl - Example project how-to setup secure connection and serve via HTTPS.

Microservices

Asynchronous API

  • Async Service - Example project on how to use asynchronous API to handle a large number of simultaneous connections.

example-jwt's People

Contributors

jerrysb03 avatar lganzzzo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

example-jwt's Issues

Change in some functions from JWT

Change in some JWT functions

In the auth/JWT.cpp file, in the line:

payload->userId = decoded.get_payload_claims().at("userId").as_string()

It looks like it should now be:

payload->userId = decoded.get_payload_claim("userId").as_string()

In the file auth/JWT.hpp, in the line:

jwt::verifier<jwt::default_clock, jwt::picojson_traits> m_verifier;

It looks like it should now be something like:

jwt::verifier<jwt::default_clock, jwt::traits::kazuho_picojson> m_verifier;

Got some troubles compiling this example with conan

Hello,

I'm trying to tweak this example in order to use conan. So far, I have the following conanfile.txt file:

[requires]
oatpp/1.3.0
oatpp-swagger/1.3.0
oatpp-postgresql/1.3.0
oatpp-openssl/1.3.0
jwt-cpp/0.6.0
openssl/3.0.1
picojson/cci.20210117

[generators]
cmake

I have tweaked the CMakeLists.txt file:

## include directories

target_include_directories(example-jwt-lib PUBLIC src)

##find_package(OpenSSL 1.1 REQUIRED)

## link libs

##find_package(oatpp              1.3.0 REQUIRED)
##find_package(oatpp-swagger      1.3.0 REQUIRED)
##find_package(oatpp-postgresql   1.3.0 REQUIRED)
##find_package(oatpp-openssl      1.3.0 REQUIRED)

##find_package(jwt-cpp REQUIRED PATHS /usr/local/cmake)

target_link_libraries(example-jwt-lib
        # oatpp
        PUBLIC CONAN_PKG::oatpp
        PUBLIC CONAN_PKG::oatpp-swagger
        PUBLIC CONAN_PKG::oatpp-postgresql
        PUBLIC CONAN_PKG::oatpp-openssl

        # third-party
        PUBLIC CONAN_PKG::picojson
        PUBLIC CONAN_PKG::jwt-cpp
        PUBLIC CONAN_PKG::openssl
        #PUBLIC CONAN_PKG::Crypto

)

But I have the following issue:

Scanning dependencies of target example-jwt-lib
[  8%] Building CXX object CMakeFiles/example-jwt-lib.dir/src/auth/AuthHandler.cpp.o
In file included from /home/jean-pierre/acp_dev/CppRestAPI/oatpp/example-jwt/src/auth/AuthHandler.hpp:5,
                 from /home/jean-pierre/acp_dev/CppRestAPI/oatpp/example-jwt/src/auth/AuthHandler.cpp:2:
/home/jean-pierre/acp_dev/CppRestAPI/oatpp/example-jwt/src/auth/JWT.hpp:22:42: error: ‘picojson_traits’ is not a member of ‘jwt’
   22 |   jwt::verifier<jwt::default_clock, jwt::picojson_traits> m_verifier;
      |                                          ^~~~~~~~~~~~~~~
/home/jean-pierre/acp_dev/CppRestAPI/oatpp/example-jwt/src/auth/JWT.hpp:22:42: error: ‘picojson_traits’ is not a member of ‘jwt’
/home/jean-pierre/acp_dev/CppRestAPI/oatpp/example-jwt/src/auth/JWT.hpp:22:57: error: template argument 2 is invalid
   22 |   jwt::verifier<jwt::default_clock, jwt::picojson_traits> m_verifier;
      |                                                         ^
make[2]: *** [CMakeFiles/example-jwt-lib.dir/build.make:63 : CMakeFiles/example-jwt-lib.dir/src/auth/AuthHandler.cpp.o] Erreur 1
make[1]: *** [CMakeFiles/Makefile2:134 : CMakeFiles/example-jwt-lib.dir/all] Erreur 2
make: *** [Makefile:95 : all] Erreur 2

I'll continue to investigate, but If you have any clue in the meantime, I'll be gratefull.

Best regards,

Jean-Pierre

[Question] Is it possible to add CORS configuration for authorized failed response?

Hello,

I'm trying to implement the authorization logic in my project,
I face a CORS problem when I get the Unauthorized (401) response from the oatpp server

image

I know there is a macro ADD_CORS that can handle the CORS problem at each END POINT
but Is it possible to add CORS configuration in my authorize callback function?

class BearerAuthorizationObject : public oatpp::web::server::handler::AuthorizationObject {
 public:
  // oatpp::String user;
  // oatpp::String password;
  oatpp::String token;
};

class MyBearerAuthorizationHandler : public oatpp::web::server::handler::BearerAuthorizationHandler {
 public:
  MyBearerAuthorizationHandler() : oatpp::web::server::handler::BearerAuthorizationHandler("my-realm") {}

  std::shared_ptr<AuthorizationObject> authorize(const oatpp::String& token) override {

    if (token == "4e99e8c12de7e01535248d2bac85e732") {
      auto obj = std::make_shared<BearerAuthorizationObject>();
      obj->user = "foo";
      obj->password = "bar";
      obj->token = token;
      return obj;
    }

    return nullptr;
  }
};

What is the purpose of this repo?

Looks like there was a nice idea to create JWT example 7 months ago but it simply did not happen?
I would expect that example repos are created when they have a purpose, this way they are useless and just add to a noise.
This is a plain copy of crud example that has not been worked on...
If there are no plans to update this example it is better to remove it...

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.