Code Monkey home page Code Monkey logo

username's Introduction

Username

Gem Version

Usernames for ActiveRecord model.


Table of Contents


Installation

Username works with Rails 5 onwards. You can add it to your Gemfile with:

gem 'username'

And then execute:

$ bundle

Or install it yourself as:

$ gem install username

If you always want to be up to date fetch the latest from GitHub in your Gemfile:

gem 'username', github: 'jonhue/username'

Now run the generator:

$ rails g username

Usage

You can add usernames to an ActiveRecord model:

class User < ApplicationRecord
    include Username::Model
end

Important: Make sure to add a username string column to the corresponding database table.

Username adds a validator to prevent the use of invalid usernames.

Methods

# If a username is valid for an ActiveRecord class
User.username_valid? 'test'

# If a username is available for an ActiveRecord model
User.first.username_available? 'test'

Devise

If you are using Devise and you want to allow your users to sign in using either their username or email address, here is how you'd do that:

  1. Pass the devise option to the has_username method:
class User < ApplicationRecord
    include Username::Model
    include Username::Model::Devise
end
  1. Configure permitted Devise parameters in your ApplicationController:
class ApplicationController < ActionController::Base

    before_action :configure_permitted_parameters, if: :devise_controller?

    def configure_permitted_parameters
        attributes = [:username, :email, :password, :remember_me]
        devise_parameter_sanitizer.permit :sign_up, keys: attributes
        devise_parameter_sanitizer.permit :account_update, keys: attributes
    end

end
  1. Replace :email in your sign in form with :login:
= simple_form_for resource, as: resource_name, url: session_url(resource_name) do |f|
    = f.input :login, required: true, autofocus: true
    = f.input :password, required: true

Configuration

You can configure Username by passing a block to configure. This can be done in config/initializers/username.rb:

Username.configure do |config|
    config.forbidden = []
end
  • forbidden Array of forbidden usernames. Takes an array of strings. Defaults to [].
  • minlength Minimum length for usernames. Takes an integer. Defaults to 1.
  • maxlength Maximum length for usernames. Takes an integer. Defaults to 20.
  • regex Strings not matching this regular expression are invalid as usernames. Takes a regular expression. Defaults to /\A[a-zA-Z0-9_\.]*\z/.
  • global_uniqueness Whether to validate usernames across all models or just the records model. Takes a boolean. Defaults to true.

To Do

Here is the full list of current projects.

To propose your ideas, initiate the discussion by adding a new issue.


Contributing

We hope that you will consider contributing to Username. Please read this short overview for some information about how to get started:

Learn more about contributing to this repository, Code of Conduct

Contributors

Give the people some ❤️ who are working on this project. See them all at:

https://github.com/jonhue/username/graphs/contributors

Semantic Versioning

Username follows Semantic Versioning 2.0 as defined at http://semver.org.

License

MIT License

Copyright (c) 2018 Jonas Hübotter

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

username's People

Contributors

jonhue avatar

Watchers

 avatar  avatar  avatar

username's Issues

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.