Project

username

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Usernames for ActiveRecord models.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.7
~> 0.52

Runtime

 Project Readme

Username

Gem Version

Usernames for ActiveRecord model.


Table of Contents

  • Installation
  • Usage
    • Methods
    • Devise
  • Configuration
  • To Do
  • Contributing
    • Contributors
    • Semantic versioning
  • License

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.