Giter Club home page Giter Club logo

data-utilities's Introduction

wercker status

Data utilities

This libraries offers data types representing some common logic.

Usages

For example, UserRepository interface is given with signature like bellow and you are going to implement user login feature in UserService.

interface UserRepository {
  @NotNull
  Optional<User> findUserByEmail(@NotNull String email);
}
interface UserService {
  @NotNull
  UserName login(@NotNull String email, @NotNull String password);
}

In the normal case this service will be implemented as follows.

class UserServiceImpl {
  private final UserRepository repository;
  private final HashService hashService;

  @Override
  @NotNull
  public Username login(@NotNull String email, @NotNull String password) {
    final Optional<User> user = repository.findUserByEmail(email);
    if (!user.isPresent()) {
      throw new UserNotFoundException("Invalid email and password.");
    }
    final User u = user.get();
    if (hashService.validateHash(u.getPasswordHash(), password)) {
      return u.getName();
    } else {
      throw new UserNotFoundException("Invalid email and password.");
    }
  }
}

With this library you can implement this method with method chain.

class UserServiceImpl {
  private final UserRepository repository;
  private final HashService hashService;

  @Override
  @NotNull
  public Username login(@NotNull String email, @NotNull String password) {
    return repository.findUserByEmail(email)
        .map(Tuple.mkTuple(User::getPasswordHash)) // User -> Tuple<User, PasswordHash>
        .filter(Tuple.conditionTuple(hash -> hashService.validateHash(hash, password)))
        .map(Tuple::getLeft) // Tuple<User, String> -> User
        .orElseThrow(() -> new UserNotFoundException("Invalid email and password."));
  }
}

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.