/pow_last_login

A Pow extension to keep track of the last login time and IP of users

Primary LanguageElixirMIT LicenseMIT

PowLastLogin

Build Status hex.pm

A Pow extension that adds the ability to track when and from which IP address a user logged in.

You can then add to your templates a message such as:

You last logged in <%= Timex.format!(@conn.assigns.current_user.last_login_at, "{relative}", :relative) %> from <%= @conn.assigns.current_user.last_login_from %>.

Time formatting courtesy of timex, thanks ;)

Installation

Installing PowLastLogin is super simple.

Add PowLastLogin to the list of dependencies in mix.exs:

def deps do
  [
    # ...
    {:pow_last_login, "~> 0.1.1"}
    # ...
  ]
end

Add it to the list of Pow extensions, and if you didn't already, also the controller_callbacks option:

config :my_app, :pow,
  user: MyApp.Users.User,
  repo: MyApp.Repo,
  extensions: [...PowLastLogin],
  controller_callbacks: Pow.Extension.Phoenix.ControllerCallbacks

And in the user schema file:

use Pow.Extension.Ecto.Schema,
    extensions: [...PowPersistentSession]

Generate the migrations, then migrate your database. This adds the login columns added to your users table.

mix pow.extension.ecto.gen.migrations --extension PowLastLogin
mix ecto.migrate

That's it :)

Real IP

If you're behind a proxy (e.g. CloudFlare) you should use a plug (such as RemoteIp) to get the real IP of the client.

LICENSE

(The MIT License)

Copyright (c) 2018-2019 Dan Schultzer & the Contributors

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.