customizing.txt 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170
  1. ====================================
  2. Customizing authentication in Django
  3. ====================================
  4. The authentication that comes with Django is good enough for most common cases,
  5. but you may have needs not met by the out-of-the-box defaults. To customize
  6. authentication to your projects needs involves understanding what points of the
  7. provided system are extensible or replaceable. This document provides details
  8. about how the auth system can be customized.
  9. :ref:`Authentication backends <authentication-backends>` provide an extensible
  10. system for when a username and password stored with the user model need to be
  11. authenticated against a different service than Django's default.
  12. You can give your models :ref:`custom permissions <custom-permissions>` that
  13. can be checked through Django's authorization system.
  14. You can :ref:`extend <extending-user>` the default ``User`` model, or
  15. :ref:`substitute <auth-custom-user>` a completely customized model.
  16. .. _authentication-backends:
  17. Other authentication sources
  18. ============================
  19. There may be times you have the need to hook into another authentication source
  20. -- that is, another source of usernames and passwords or authentication
  21. methods.
  22. For example, your company may already have an LDAP setup that stores a username
  23. and password for every employee. It'd be a hassle for both the network
  24. administrator and the users themselves if users had separate accounts in LDAP
  25. and the Django-based applications.
  26. So, to handle situations like this, the Django authentication system lets you
  27. plug in other authentication sources. You can override Django's default
  28. database-based scheme, or you can use the default system in tandem with other
  29. systems.
  30. See the :ref:`authentication backend reference
  31. <authentication-backends-reference>` for information on the authentication
  32. backends included with Django.
  33. Specifying authentication backends
  34. ----------------------------------
  35. Behind the scenes, Django maintains a list of "authentication backends" that it
  36. checks for authentication. When somebody calls
  37. :func:`django.contrib.auth.authenticate()` -- as described in :ref:`How to log
  38. a user in <how-to-log-a-user-in>` -- Django tries authenticating across
  39. all of its authentication backends. If the first authentication method fails,
  40. Django tries the second one, and so on, until all backends have been attempted.
  41. The list of authentication backends to use is specified in the
  42. :setting:`AUTHENTICATION_BACKENDS` setting. This should be a list of Python
  43. path names that point to Python classes that know how to authenticate. These
  44. classes can be anywhere on your Python path.
  45. By default, :setting:`AUTHENTICATION_BACKENDS` is set to::
  46. ['django.contrib.auth.backends.ModelBackend']
  47. That's the basic authentication backend that checks the Django users database
  48. and queries the built-in permissions. It does not provide protection against
  49. brute force attacks via any rate limiting mechanism. You may either implement
  50. your own rate limiting mechanism in a custom auth backend, or use the
  51. mechanisms provided by most Web servers.
  52. The order of :setting:`AUTHENTICATION_BACKENDS` matters, so if the same
  53. username and password is valid in multiple backends, Django will stop
  54. processing at the first positive match.
  55. If a backend raises a :class:`~django.core.exceptions.PermissionDenied`
  56. exception, authentication will immediately fail. Django won't check the
  57. backends that follow.
  58. .. note::
  59. Once a user has authenticated, Django stores which backend was used to
  60. authenticate the user in the user's session, and re-uses the same backend
  61. for the duration of that session whenever access to the currently
  62. authenticated user is needed. This effectively means that authentication
  63. sources are cached on a per-session basis, so if you change
  64. :setting:`AUTHENTICATION_BACKENDS`, you'll need to clear out session data if
  65. you need to force users to re-authenticate using different methods. A simple
  66. way to do that is simply to execute ``Session.objects.all().delete()``.
  67. Writing an authentication backend
  68. ---------------------------------
  69. An authentication backend is a class that implements two required methods:
  70. ``get_user(user_id)`` and ``authenticate(request, **credentials)``, as well as
  71. a set of optional permission related :ref:`authorization methods
  72. <authorization_methods>`.
  73. The ``get_user`` method takes a ``user_id`` -- which could be a username,
  74. database ID or whatever, but has to be the primary key of your user object --
  75. and returns a user object.
  76. The ``authenticate`` method takes a ``request`` argument and credentials as
  77. keyword arguments. Most of the time, it'll just look like this::
  78. class MyBackend(object):
  79. def authenticate(self, request, username=None, password=None):
  80. # Check the username/password and return a user.
  81. ...
  82. But it could also authenticate a token, like so::
  83. class MyBackend(object):
  84. def authenticate(self, request, token=None):
  85. # Check the token and return a user.
  86. ...
  87. Either way, ``authenticate()`` should check the credentials it gets and return
  88. a user object that matches those credentials if the credentials are valid. If
  89. they're not valid, it should return ``None``.
  90. ``request`` is an :class:`~django.http.HttpRequest` and may be ``None`` if it
  91. wasn't provided to :func:`~django.contrib.auth.authenticate` (which passes it
  92. on to the backend).
  93. The Django admin is tightly coupled to the Django :ref:`User object
  94. <user-objects>`. The best way to deal with this is to create a Django ``User``
  95. object for each user that exists for your backend (e.g., in your LDAP
  96. directory, your external SQL database, etc.) You can either write a script to
  97. do this in advance, or your ``authenticate`` method can do it the first time a
  98. user logs in.
  99. Here's an example backend that authenticates against a username and password
  100. variable defined in your ``settings.py`` file and creates a Django ``User``
  101. object the first time a user authenticates::
  102. from django.conf import settings
  103. from django.contrib.auth.hashers import check_password
  104. from django.contrib.auth.models import User
  105. class SettingsBackend(object):
  106. """
  107. Authenticate against the settings ADMIN_LOGIN and ADMIN_PASSWORD.
  108. Use the login name and a hash of the password. For example:
  109. ADMIN_LOGIN = 'admin'
  110. ADMIN_PASSWORD = 'pbkdf2_sha256$30000$Vo0VlMnkR4Bk$qEvtdyZRWTcOsCnI/oQ7fVOu1XAURIZYoOZ3iq8Dr4M='
  111. """
  112. def authenticate(self, request, username=None, password=None):
  113. login_valid = (settings.ADMIN_LOGIN == username)
  114. pwd_valid = check_password(password, settings.ADMIN_PASSWORD)
  115. if login_valid and pwd_valid:
  116. try:
  117. user = User.objects.get(username=username)
  118. except User.DoesNotExist:
  119. # Create a new user. There's no need to set a password
  120. # because only the password from settings.py is checked.
  121. user = User(username=username)
  122. user.is_staff = True
  123. user.is_superuser = True
  124. user.save()
  125. return user
  126. return None
  127. def get_user(self, user_id):
  128. try:
  129. return User.objects.get(pk=user_id)
  130. except User.DoesNotExist:
  131. return None
  132. .. versionchanged:: 1.11
  133. The ``request`` parameter was added to ``authenticate()`` and support for
  134. backends that don't accept it will be removed in Django 2.1.
  135. .. _authorization_methods:
  136. Handling authorization in custom backends
  137. -----------------------------------------
  138. Custom auth backends can provide their own permissions.
  139. The user model will delegate permission lookup functions
  140. (:meth:`~django.contrib.auth.models.User.get_group_permissions()`,
  141. :meth:`~django.contrib.auth.models.User.get_all_permissions()`,
  142. :meth:`~django.contrib.auth.models.User.has_perm()`, and
  143. :meth:`~django.contrib.auth.models.User.has_module_perms()`) to any
  144. authentication backend that implements these functions.
  145. The permissions given to the user will be the superset of all permissions
  146. returned by all backends. That is, Django grants a permission to a user that
  147. any one backend grants.
  148. If a backend raises a :class:`~django.core.exceptions.PermissionDenied`
  149. exception in :meth:`~django.contrib.auth.models.User.has_perm()` or
  150. :meth:`~django.contrib.auth.models.User.has_module_perms()`, the authorization
  151. will immediately fail and Django won't check the backends that follow.
  152. The simple backend above could implement permissions for the magic admin
  153. fairly simply::
  154. class SettingsBackend(object):
  155. ...
  156. def has_perm(self, user_obj, perm, obj=None):
  157. return user_obj.username == settings.ADMIN_LOGIN
  158. This gives full permissions to the user granted access in the above example.
  159. Notice that in addition to the same arguments given to the associated
  160. :class:`django.contrib.auth.models.User` functions, the backend auth functions
  161. all take the user object, which may be an anonymous user, as an argument.
  162. A full authorization implementation can be found in the ``ModelBackend`` class
  163. in `django/contrib/auth/backends.py`_, which is the default backend and queries
  164. the ``auth_permission`` table most of the time. If you wish to provide
  165. custom behavior for only part of the backend API, you can take advantage of
  166. Python inheritance and subclass ``ModelBackend`` instead of implementing the
  167. complete API in a custom backend.
  168. .. _django/contrib/auth/backends.py: https://github.com/django/django/blob/master/django/contrib/auth/backends.py
  169. .. _anonymous_auth:
  170. Authorization for anonymous users
  171. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  172. An anonymous user is one that is not authenticated i.e. they have provided no
  173. valid authentication details. However, that does not necessarily mean they are
  174. not authorized to do anything. At the most basic level, most websites
  175. authorize anonymous users to browse most of the site, and many allow anonymous
  176. posting of comments etc.
  177. Django's permission framework does not have a place to store permissions for
  178. anonymous users. However, the user object passed to an authentication backend
  179. may be an :class:`django.contrib.auth.models.AnonymousUser` object, allowing
  180. the backend to specify custom authorization behavior for anonymous users. This
  181. is especially useful for the authors of re-usable apps, who can delegate all
  182. questions of authorization to the auth backend, rather than needing settings,
  183. for example, to control anonymous access.
  184. .. _inactive_auth:
  185. Authorization for inactive users
  186. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  187. An inactive user is a one that has its
  188. :attr:`~django.contrib.auth.models.User.is_active` field set to ``False``. The
  189. :class:`~django.contrib.auth.backends.ModelBackend` and
  190. :class:`~django.contrib.auth.backends.RemoteUserBackend` authentication
  191. backends prohibits these users from authenticating. If a custom user model
  192. doesn't have an :attr:`~django.contrib.auth.models.CustomUser.is_active` field,
  193. all users will be allowed to authenticate.
  194. You can use :class:`~django.contrib.auth.backends.AllowAllUsersModelBackend`
  195. or :class:`~django.contrib.auth.backends.AllowAllUsersRemoteUserBackend` if you
  196. want to allow inactive users to authenticate.
  197. The support for anonymous users in the permission system allows for a scenario
  198. where anonymous users have permissions to do something while inactive
  199. authenticated users do not.
  200. Do not forget to test for the ``is_active`` attribute of the user in your own
  201. backend permission methods.
  202. .. versionchanged:: 1.10
  203. In older versions, the :class:`~django.contrib.auth.backends.ModelBackend`
  204. allowed inactive users to authenticate.
  205. Handling object permissions
  206. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  207. Django's permission framework has a foundation for object permissions, though
  208. there is no implementation for it in the core. That means that checking for
  209. object permissions will always return ``False`` or an empty list (depending on
  210. the check performed). An authentication backend will receive the keyword
  211. parameters ``obj`` and ``user_obj`` for each object related authorization
  212. method and can return the object level permission as appropriate.
  213. .. _custom-permissions:
  214. Custom permissions
  215. ==================
  216. To create custom permissions for a given model object, use the ``permissions``
  217. :ref:`model Meta attribute <meta-options>`.
  218. This example Task model creates three custom permissions, i.e., actions users
  219. can or cannot do with Task instances, specific to your application::
  220. class Task(models.Model):
  221. ...
  222. class Meta:
  223. permissions = (
  224. ("view_task", "Can see available tasks"),
  225. ("change_task_status", "Can change the status of tasks"),
  226. ("close_task", "Can remove a task by setting its status as closed"),
  227. )
  228. The only thing this does is create those extra permissions when you run
  229. :djadmin:`manage.py migrate <migrate>` (the function that creates permissions
  230. is connected to the :data:`~django.db.models.signals.post_migrate` signal).
  231. Your code is in charge of checking the value of these permissions when a user
  232. is trying to access the functionality provided by the application (viewing
  233. tasks, changing the status of tasks, closing tasks.) Continuing the above
  234. example, the following checks if a user may view tasks::
  235. user.has_perm('app.view_task')
  236. .. _extending-user:
  237. Extending the existing ``User`` model
  238. =====================================
  239. There are two ways to extend the default
  240. :class:`~django.contrib.auth.models.User` model without substituting your own
  241. model. If the changes you need are purely behavioral, and don't require any
  242. change to what is stored in the database, you can create a :ref:`proxy model
  243. <proxy-models>` based on :class:`~django.contrib.auth.models.User`. This
  244. allows for any of the features offered by proxy models including default
  245. ordering, custom managers, or custom model methods.
  246. If you wish to store information related to ``User``, you can use a
  247. :class:`~django.db.models.OneToOneField` to a model containing the fields for
  248. additional information. This one-to-one model is often called a profile model,
  249. as it might store non-auth related information about a site user. For example
  250. you might create an Employee model::
  251. from django.contrib.auth.models import User
  252. class Employee(models.Model):
  253. user = models.OneToOneField(User, on_delete=models.CASCADE)
  254. department = models.CharField(max_length=100)
  255. Assuming an existing Employee Fred Smith who has both a User and Employee
  256. model, you can access the related information using Django's standard related
  257. model conventions::
  258. >>> u = User.objects.get(username='fsmith')
  259. >>> freds_department = u.employee.department
  260. To add a profile model's fields to the user page in the admin, define an
  261. :class:`~django.contrib.admin.InlineModelAdmin` (for this example, we'll use a
  262. :class:`~django.contrib.admin.StackedInline`) in your app's ``admin.py`` and
  263. add it to a ``UserAdmin`` class which is registered with the
  264. :class:`~django.contrib.auth.models.User` class::
  265. from django.contrib import admin
  266. from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
  267. from django.contrib.auth.models import User
  268. from my_user_profile_app.models import Employee
  269. # Define an inline admin descriptor for Employee model
  270. # which acts a bit like a singleton
  271. class EmployeeInline(admin.StackedInline):
  272. model = Employee
  273. can_delete = False
  274. verbose_name_plural = 'employee'
  275. # Define a new User admin
  276. class UserAdmin(BaseUserAdmin):
  277. inlines = (EmployeeInline, )
  278. # Re-register UserAdmin
  279. admin.site.unregister(User)
  280. admin.site.register(User, UserAdmin)
  281. These profile models are not special in any way - they are just Django models
  282. that happen to have a one-to-one link with a user model. As such, they aren't
  283. auto created when a user is created, but
  284. a :attr:`django.db.models.signals.post_save` could be used to create or update
  285. related models as appropriate.
  286. Using related models results in additional queries or joins to retrieve the
  287. related data. Depending on your needs, a custom user model that includes the
  288. related fields may be your better option, however, existing relations to the
  289. default user model within your project's apps may justify the extra database
  290. load.
  291. .. _auth-custom-user:
  292. Substituting a custom ``User`` model
  293. ====================================
  294. Some kinds of projects may have authentication requirements for which Django's
  295. built-in :class:`~django.contrib.auth.models.User` model is not always
  296. appropriate. For instance, on some sites it makes more sense to use an email
  297. address as your identification token instead of a username.
  298. Django allows you to override the default user model by providing a value for
  299. the :setting:`AUTH_USER_MODEL` setting that references a custom model::
  300. AUTH_USER_MODEL = 'myapp.MyUser'
  301. This dotted pair describes the name of the Django app (which must be in your
  302. :setting:`INSTALLED_APPS`), and the name of the Django model that you wish to
  303. use as your user model.
  304. Using a custom user model when starting a project
  305. -------------------------------------------------
  306. If you're starting a new project, it's highly recommended to set up a custom
  307. user model, even if the default :class:`~django.contrib.auth.models.User` model
  308. is sufficient for you. This model behaves identically to the default user
  309. model, but you'll be able to customize it in the future if the need arises::
  310. from django.contrib.auth.models import AbstractUser
  311. class User(AbstractUser):
  312. pass
  313. Don't forget to point :setting:`AUTH_USER_MODEL` to it. Do this before creating
  314. any migrations or running ``manage.py migrate`` for the first time.
  315. Changing to a custom user model mid-project
  316. -------------------------------------------
  317. Changing :setting:`AUTH_USER_MODEL` after you've created database tables is
  318. significantly more difficult since it affects foreign keys and many-to-many
  319. relationships, for example.
  320. This change can't be done automatically and requires manually fixing your
  321. schema, moving your data from the old user table, and possibly manually
  322. reapplying some migrations. See :ticket:`25313` for an outline of the steps.
  323. Due to limitations of Django's dynamic dependency feature for swappable
  324. models, the model referenced by :setting:`AUTH_USER_MODEL` must be created in
  325. the first migration of its app (usually called ``0001_initial``); otherwise,
  326. you'll have dependency issues.
  327. In addition, you may run into a ``CircularDependencyError`` when running your
  328. migrations as Django won't be able to automatically break the dependency loop
  329. due to the dynamic dependency. If you see this error, you should break the loop
  330. by moving the models depended on by your user model into a second migration.
  331. (You can try making two normal models that have a ``ForeignKey`` to each other
  332. and seeing how ``makemigrations`` resolves that circular dependency if you want
  333. to see how it's usually done.)
  334. Reusable apps and ``AUTH_USER_MODEL``
  335. -------------------------------------
  336. Reusable apps shouldn't implement a custom user model. A project may use many
  337. apps, and two reusable apps that implemented a custom user model couldn't be
  338. used together. If you need to store per user information in your app, use
  339. a :class:`~django.db.models.ForeignKey` or
  340. :class:`~django.db.models.OneToOneField` to ``settings.AUTH_USER_MODEL``
  341. as described below.
  342. Referencing the ``User`` model
  343. ------------------------------
  344. .. currentmodule:: django.contrib.auth
  345. If you reference :class:`~django.contrib.auth.models.User` directly (for
  346. example, by referring to it in a foreign key), your code will not work in
  347. projects where the :setting:`AUTH_USER_MODEL` setting has been changed to a
  348. different user model.
  349. .. function:: get_user_model()
  350. Instead of referring to :class:`~django.contrib.auth.models.User` directly,
  351. you should reference the user model using
  352. ``django.contrib.auth.get_user_model()``. This method will return the
  353. currently active user model -- the custom user model if one is specified, or
  354. :class:`~django.contrib.auth.models.User` otherwise.
  355. When you define a foreign key or many-to-many relations to the user model,
  356. you should specify the custom model using the :setting:`AUTH_USER_MODEL`
  357. setting. For example::
  358. from django.conf import settings
  359. from django.db import models
  360. class Article(models.Model):
  361. author = models.ForeignKey(
  362. settings.AUTH_USER_MODEL,
  363. on_delete=models.CASCADE,
  364. )
  365. When connecting to signals sent by the user model, you should specify
  366. the custom model using the :setting:`AUTH_USER_MODEL` setting. For example::
  367. from django.conf import settings
  368. from django.db.models.signals import post_save
  369. def post_save_receiver(sender, instance, created, **kwargs):
  370. pass
  371. post_save.connect(post_save_receiver, sender=settings.AUTH_USER_MODEL)
  372. Generally speaking, you should reference the user model with the
  373. :setting:`AUTH_USER_MODEL` setting in code that is executed at import
  374. time. ``get_user_model()`` only works once Django has imported all models.
  375. .. _specifying-custom-user-model:
  376. Specifying a custom user model
  377. ------------------------------
  378. .. admonition:: Model design considerations
  379. Think carefully before handling information not directly related to
  380. authentication in your custom user model.
  381. It may be better to store app-specific user information in a model
  382. that has a relation with the user model. That allows each app to specify
  383. its own user data requirements without risking conflicts with other
  384. apps. On the other hand, queries to retrieve this related information
  385. will involve a database join, which may have an effect on performance.
  386. Django expects your custom user model to meet some minimum requirements.
  387. #. If you use the default authentication backend, then your model must have a
  388. single unique field that can be used for identification purposes. This can
  389. be a username, an email address, or any other unique attribute. A non-unique
  390. username field is allowed if you use a custom authentication backend that
  391. can support it.
  392. #. Your model must provide a way to address the user in a "short" and
  393. "long" form. The most common interpretation of this would be to use
  394. the user's given name as the "short" identifier, and the user's full
  395. name as the "long" identifier. However, there are no constraints on
  396. what these two methods return - if you want, they can return exactly
  397. the same value.
  398. The easiest way to construct a compliant custom user model is to inherit from
  399. :class:`~django.contrib.auth.models.AbstractBaseUser`.
  400. :class:`~django.contrib.auth.models.AbstractBaseUser` provides the core
  401. implementation of a user model, including hashed passwords and tokenized
  402. password resets. You must then provide some key implementation details:
  403. .. currentmodule:: django.contrib.auth
  404. .. class:: models.CustomUser
  405. .. attribute:: USERNAME_FIELD
  406. A string describing the name of the field on the user model that is
  407. used as the unique identifier. This will usually be a username of some
  408. kind, but it can also be an email address, or any other unique
  409. identifier. The field *must* be unique (i.e., have ``unique=True`` set
  410. in its definition), unless you use a custom authentication backend that
  411. can support non-unique usernames.
  412. In the following example, the field ``identifier`` is used
  413. as the identifying field::
  414. class MyUser(AbstractBaseUser):
  415. identifier = models.CharField(max_length=40, unique=True)
  416. ...
  417. USERNAME_FIELD = 'identifier'
  418. :attr:`USERNAME_FIELD` now supports
  419. :class:`~django.db.models.ForeignKey`\s. Since there is no way to pass
  420. model instances during the :djadmin:`createsuperuser` prompt, expect the
  421. user to enter the value of :attr:`~django.db.models.ForeignKey.to_field`
  422. value (the :attr:`~django.db.models.Field.primary_key` by default) of an
  423. existing instance.
  424. .. attribute:: EMAIL_FIELD
  425. .. versionadded:: 1.11
  426. A string describing the name of the email field on the ``User`` model.
  427. This value is returned by
  428. :meth:`~models.AbstractBaseUser.get_email_field_name`.
  429. .. attribute:: REQUIRED_FIELDS
  430. A list of the field names that will be prompted for when creating a
  431. user via the :djadmin:`createsuperuser` management command. The user
  432. will be prompted to supply a value for each of these fields. It must
  433. include any field for which :attr:`~django.db.models.Field.blank` is
  434. ``False`` or undefined and may include additional fields you want
  435. prompted for when a user is created interactively.
  436. ``REQUIRED_FIELDS`` has no effect in other parts of Django, like
  437. creating a user in the admin.
  438. For example, here is the partial definition for a user model that
  439. defines two required fields - a date of birth and height::
  440. class MyUser(AbstractBaseUser):
  441. ...
  442. date_of_birth = models.DateField()
  443. height = models.FloatField()
  444. ...
  445. REQUIRED_FIELDS = ['date_of_birth', 'height']
  446. .. note::
  447. ``REQUIRED_FIELDS`` must contain all required fields on your user
  448. model, but should *not* contain the ``USERNAME_FIELD`` or
  449. ``password`` as these fields will always be prompted for.
  450. :attr:`REQUIRED_FIELDS` now supports
  451. :class:`~django.db.models.ForeignKey`\s. Since there is no way to pass
  452. model instances during the :djadmin:`createsuperuser` prompt, expect the
  453. user to enter the value of :attr:`~django.db.models.ForeignKey.to_field`
  454. value (the :attr:`~django.db.models.Field.primary_key` by default) of an
  455. existing instance.
  456. .. attribute:: is_active
  457. A boolean attribute that indicates whether the user is considered
  458. "active". This attribute is provided as an attribute on
  459. ``AbstractBaseUser`` defaulting to ``True``. How you choose to
  460. implement it will depend on the details of your chosen auth backends.
  461. See the documentation of the :attr:`is_active attribute on the built-in
  462. user model <django.contrib.auth.models.User.is_active>` for details.
  463. .. method:: get_full_name()
  464. A longer formal identifier for the user. A common interpretation
  465. would be the full name of the user, but it can be any string that
  466. identifies the user.
  467. .. method:: get_short_name()
  468. A short, informal identifier for the user. A common interpretation
  469. would be the first name of the user, but it can be any string that
  470. identifies the user in an informal way. It may also return the same
  471. value as :meth:`django.contrib.auth.models.User.get_full_name()`.
  472. .. admonition:: Importing ``AbstractBaseUser``
  473. ``AbstractBaseUser`` and ``BaseUserManager`` are importable from
  474. ``django.contrib.auth.base_user`` so that they can be imported without
  475. including ``django.contrib.auth`` in :setting:`INSTALLED_APPS`.
  476. The following attributes and methods are available on any subclass of
  477. :class:`~django.contrib.auth.models.AbstractBaseUser`:
  478. .. class:: models.AbstractBaseUser
  479. .. method:: get_username()
  480. Returns the value of the field nominated by ``USERNAME_FIELD``.
  481. .. method:: clean()
  482. .. versionadded:: 1.10
  483. Normalizes the username by calling :meth:`normalize_username`. If you
  484. override this method, be sure to call ``super()`` to retain the
  485. normalization.
  486. .. classmethod:: get_email_field_name()
  487. .. versionadded:: 1.11
  488. Returns the name of the email field specified by the
  489. :attr:`~models.CustomUser.EMAIL_FIELD` attribute. Defaults to
  490. ``'email'`` if ``EMAIL_FIELD`` isn't specified.
  491. .. classmethod:: normalize_username(username)
  492. .. versionadded:: 1.10
  493. Applies NFKC Unicode normalization to usernames so that visually
  494. identical characters with different Unicode code points are considered
  495. identical.
  496. .. attribute:: models.AbstractBaseUser.is_authenticated
  497. Read-only attribute which is always ``True`` (as opposed to
  498. ``AnonymousUser.is_authenticated`` which is always ``False``).
  499. This is a way to tell if the user has been authenticated. This does not
  500. imply any permissions and doesn't check if the user is active or has
  501. a valid session. Even though normally you will check this attribute on
  502. ``request.user`` to find out whether it has been populated by the
  503. :class:`~django.contrib.auth.middleware.AuthenticationMiddleware`
  504. (representing the currently logged-in user), you should know this
  505. attribute is ``True`` for any :class:`~models.User` instance.
  506. .. versionchanged:: 1.10
  507. In older versions, this was a method. Backwards-compatibility
  508. support for using it as a method will be removed in Django 2.0.
  509. .. attribute:: models.AbstractBaseUser.is_anonymous
  510. Read-only attribute which is always ``False``. This is a way of
  511. differentiating :class:`~models.User` and :class:`~models.AnonymousUser`
  512. objects. Generally, you should prefer using
  513. :attr:`~models.User.is_authenticated` to this attribute.
  514. .. versionchanged:: 1.10
  515. In older versions, this was a method. Backwards-compatibility
  516. support for using it as a method will be removed in Django 2.0.
  517. .. method:: models.AbstractBaseUser.set_password(raw_password)
  518. Sets the user's password to the given raw string, taking care of the
  519. password hashing. Doesn't save the
  520. :class:`~django.contrib.auth.models.AbstractBaseUser` object.
  521. When the raw_password is ``None``, the password will be set to an
  522. unusable password, as if
  523. :meth:`~django.contrib.auth.models.AbstractBaseUser.set_unusable_password()`
  524. were used.
  525. .. method:: models.AbstractBaseUser.check_password(raw_password)
  526. Returns ``True`` if the given raw string is the correct password for
  527. the user. (This takes care of the password hashing in making the
  528. comparison.)
  529. .. method:: models.AbstractBaseUser.set_unusable_password()
  530. Marks the user as having no password set. This isn't the same as
  531. having a blank string for a password.
  532. :meth:`~django.contrib.auth.models.AbstractBaseUser.check_password()` for this user
  533. will never return ``True``. Doesn't save the
  534. :class:`~django.contrib.auth.models.AbstractBaseUser` object.
  535. You may need this if authentication for your application takes place
  536. against an existing external source such as an LDAP directory.
  537. .. method:: models.AbstractBaseUser.has_usable_password()
  538. Returns ``False`` if
  539. :meth:`~django.contrib.auth.models.AbstractBaseUser.set_unusable_password()` has
  540. been called for this user.
  541. .. method:: models.AbstractBaseUser.get_session_auth_hash()
  542. Returns an HMAC of the password field. Used for
  543. :ref:`session-invalidation-on-password-change`.
  544. :class:`~models.AbstractUser` subclasses :class:`~models.AbstractBaseUser`:
  545. .. class:: models.AbstractUser
  546. .. method:: clean()
  547. .. versionadded:: 1.11
  548. Normalizes the email by calling
  549. :meth:`.BaseUserManager.normalize_email`. If you override this method,
  550. be sure to call ``super()`` to retain the normalization.
  551. You should also define a custom manager for your user model. If your user model
  552. defines ``username``, ``email``, ``is_staff``, ``is_active``, ``is_superuser``,
  553. ``last_login``, and ``date_joined`` fields the same as Django's default user,
  554. you can just install Django's :class:`~django.contrib.auth.models.UserManager`;
  555. however, if your user model defines different fields, you'll need to define a
  556. custom manager that extends :class:`~django.contrib.auth.models.BaseUserManager`
  557. providing two additional methods:
  558. .. class:: models.CustomUserManager
  559. .. method:: models.CustomUserManager.create_user(*username_field*, password=None, \**other_fields)
  560. The prototype of ``create_user()`` should accept the username field,
  561. plus all required fields as arguments. For example, if your user model
  562. uses ``email`` as the username field, and has ``date_of_birth`` as a
  563. required field, then ``create_user`` should be defined as::
  564. def create_user(self, email, date_of_birth, password=None):
  565. # create user here
  566. ...
  567. .. method:: models.CustomUserManager.create_superuser(*username_field*, password, \**other_fields)
  568. The prototype of ``create_superuser()`` should accept the username
  569. field, plus all required fields as arguments. For example, if your user
  570. model uses ``email`` as the username field, and has ``date_of_birth``
  571. as a required field, then ``create_superuser`` should be defined as::
  572. def create_superuser(self, email, date_of_birth, password):
  573. # create superuser here
  574. ...
  575. Unlike ``create_user()``, ``create_superuser()`` *must* require the
  576. caller to provide a password.
  577. :class:`~django.contrib.auth.models.BaseUserManager` provides the following
  578. utility methods:
  579. .. class:: models.BaseUserManager
  580. .. classmethod:: models.BaseUserManager.normalize_email(email)
  581. Normalizes email addresses by lowercasing the domain portion of the
  582. email address.
  583. .. method:: models.BaseUserManager.get_by_natural_key(username)
  584. Retrieves a user instance using the contents of the field
  585. nominated by ``USERNAME_FIELD``.
  586. .. method:: models.BaseUserManager.make_random_password(length=10, allowed_chars='abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789')
  587. Returns a random password with the given length and given string of
  588. allowed characters. Note that the default value of ``allowed_chars``
  589. doesn't contain letters that can cause user confusion, including:
  590. * ``i``, ``l``, ``I``, and ``1`` (lowercase letter i, lowercase
  591. letter L, uppercase letter i, and the number one)
  592. * ``o``, ``O``, and ``0`` (lowercase letter o, uppercase letter o,
  593. and zero)
  594. Extending Django's default ``User``
  595. -----------------------------------
  596. If you're entirely happy with Django's :class:`~django.contrib.auth.models.User`
  597. model and you just want to add some additional profile information, you could
  598. simply subclass :class:`django.contrib.auth.models.AbstractUser` and add your
  599. custom profile fields, although we'd recommend a separate model as described in
  600. the "Model design considerations" note of :ref:`specifying-custom-user-model`.
  601. ``AbstractUser`` provides the full implementation of the default
  602. :class:`~django.contrib.auth.models.User` as an :ref:`abstract model
  603. <abstract-base-classes>`.
  604. .. _custom-users-and-the-built-in-auth-forms:
  605. Custom users and the built-in auth forms
  606. ----------------------------------------
  607. Django's built-in :ref:`forms <built-in-auth-forms>` and :ref:`views
  608. <built-in-auth-views>` make certain assumptions about the user model that they
  609. are working with.
  610. The following forms are compatible with any subclass of
  611. :class:`~django.contrib.auth.models.AbstractBaseUser`:
  612. * :class:`~django.contrib.auth.forms.AuthenticationForm`: Uses the username
  613. field specified by :attr:`~models.CustomUser.USERNAME_FIELD`.
  614. * :class:`~django.contrib.auth.forms.SetPasswordForm`
  615. * :class:`~django.contrib.auth.forms.PasswordChangeForm`
  616. * :class:`~django.contrib.auth.forms.AdminPasswordChangeForm`
  617. The following forms make assumptions about the user model and can be used as-is
  618. if those assumptions are met:
  619. * :class:`~django.contrib.auth.forms.PasswordResetForm`: Assumes that the user
  620. model has a field that stores the user's email address with the name returned
  621. by :meth:`~models.AbstractBaseUser.get_email_field_name` (``email`` by
  622. default) that can be used to identify the user and a boolean field named
  623. ``is_active`` to prevent password resets for inactive users.
  624. Finally, the following forms are tied to
  625. :class:`~django.contrib.auth.models.User` and need to be rewritten or extended
  626. to work with a custom user model:
  627. * :class:`~django.contrib.auth.forms.UserCreationForm`
  628. * :class:`~django.contrib.auth.forms.UserChangeForm`
  629. If your custom user model is a simple subclass of ``AbstractUser``, then you
  630. can extend these forms in this manner::
  631. from django.contrib.auth.forms import UserCreationForm
  632. from myapp.models import CustomUser
  633. class CustomUserCreationForm(UserCreationForm):
  634. class Meta(UserCreationForm.Meta):
  635. model = CustomUser
  636. fields = UserCreationForm.Meta.fields + ('custom_field',)
  637. Custom users and :mod:`django.contrib.admin`
  638. --------------------------------------------
  639. If you want your custom user model to also work with the admin, your user model
  640. must define some additional attributes and methods. These methods allow the
  641. admin to control access of the user to admin content:
  642. .. class:: models.CustomUser
  643. .. attribute:: is_staff
  644. Returns ``True`` if the user is allowed to have access to the admin site.
  645. .. attribute:: is_active
  646. Returns ``True`` if the user account is currently active.
  647. .. method:: has_perm(perm, obj=None):
  648. Returns ``True`` if the user has the named permission. If ``obj`` is
  649. provided, the permission needs to be checked against a specific object
  650. instance.
  651. .. method:: has_module_perms(app_label):
  652. Returns ``True`` if the user has permission to access models in
  653. the given app.
  654. You will also need to register your custom user model with the admin. If
  655. your custom user model extends ``django.contrib.auth.models.AbstractUser``,
  656. you can use Django's existing ``django.contrib.auth.admin.UserAdmin``
  657. class. However, if your user model extends
  658. :class:`~django.contrib.auth.models.AbstractBaseUser`, you'll need to define
  659. a custom ``ModelAdmin`` class. It may be possible to subclass the default
  660. ``django.contrib.auth.admin.UserAdmin``; however, you'll need to
  661. override any of the definitions that refer to fields on
  662. ``django.contrib.auth.models.AbstractUser`` that aren't on your
  663. custom user class.
  664. Custom users and permissions
  665. ----------------------------
  666. To make it easy to include Django's permission framework into your own user
  667. class, Django provides :class:`~django.contrib.auth.models.PermissionsMixin`.
  668. This is an abstract model you can include in the class hierarchy for your user
  669. model, giving you all the methods and database fields necessary to support
  670. Django's permission model.
  671. :class:`~django.contrib.auth.models.PermissionsMixin` provides the following
  672. methods and attributes:
  673. .. class:: models.PermissionsMixin
  674. .. attribute:: models.PermissionsMixin.is_superuser
  675. Boolean. Designates that this user has all permissions without
  676. explicitly assigning them.
  677. .. method:: models.PermissionsMixin.get_group_permissions(obj=None)
  678. Returns a set of permission strings that the user has, through their
  679. groups.
  680. If ``obj`` is passed in, only returns the group permissions for
  681. this specific object.
  682. .. method:: models.PermissionsMixin.get_all_permissions(obj=None)
  683. Returns a set of permission strings that the user has, both through
  684. group and user permissions.
  685. If ``obj`` is passed in, only returns the permissions for this
  686. specific object.
  687. .. method:: models.PermissionsMixin.has_perm(perm, obj=None)
  688. Returns ``True`` if the user has the specified permission, where
  689. ``perm`` is in the format ``"<app label>.<permission codename>"`` (see
  690. :ref:`permissions <topic-authorization>`). If the user is inactive, this method will
  691. always return ``False``.
  692. If ``obj`` is passed in, this method won't check for a permission for
  693. the model, but for this specific object.
  694. .. method:: models.PermissionsMixin.has_perms(perm_list, obj=None)
  695. Returns ``True`` if the user has each of the specified permissions,
  696. where each perm is in the format
  697. ``"<app label>.<permission codename>"``. If the user is inactive,
  698. this method will always return ``False``.
  699. If ``obj`` is passed in, this method won't check for permissions for
  700. the model, but for the specific object.
  701. .. method:: models.PermissionsMixin.has_module_perms(package_name)
  702. Returns ``True`` if the user has any permissions in the given package
  703. (the Django app label). If the user is inactive, this method will
  704. always return ``False``.
  705. .. admonition:: ``PermissionsMixin`` and ``ModelBackend``
  706. If you don't include the
  707. :class:`~django.contrib.auth.models.PermissionsMixin`, you must ensure you
  708. don't invoke the permissions methods on ``ModelBackend``. ``ModelBackend``
  709. assumes that certain fields are available on your user model. If your user
  710. model doesn't provide those fields, you'll receive database errors when
  711. you check permissions.
  712. Custom users and proxy models
  713. -----------------------------
  714. One limitation of custom user models is that installing a custom user model
  715. will break any proxy model extending :class:`~django.contrib.auth.models.User`.
  716. Proxy models must be based on a concrete base class; by defining a custom user
  717. model, you remove the ability of Django to reliably identify the base class.
  718. If your project uses proxy models, you must either modify the proxy to extend
  719. the user model that's in use in your project, or merge your proxy's behavior
  720. into your :class:`~django.contrib.auth.models.User` subclass.
  721. A full example
  722. --------------
  723. Here is an example of an admin-compliant custom user app. This user model uses
  724. an email address as the username, and has a required date of birth; it
  725. provides no permission checking, beyond a simple ``admin`` flag on the user
  726. account. This model would be compatible with all the built-in auth forms and
  727. views, except for the user creation forms. This example illustrates how most of
  728. the components work together, but is not intended to be copied directly into
  729. projects for production use.
  730. This code would all live in a ``models.py`` file for a custom
  731. authentication app::
  732. from django.db import models
  733. from django.contrib.auth.models import (
  734. BaseUserManager, AbstractBaseUser
  735. )
  736. class MyUserManager(BaseUserManager):
  737. def create_user(self, email, date_of_birth, password=None):
  738. """
  739. Creates and saves a User with the given email, date of
  740. birth and password.
  741. """
  742. if not email:
  743. raise ValueError('Users must have an email address')
  744. user = self.model(
  745. email=self.normalize_email(email),
  746. date_of_birth=date_of_birth,
  747. )
  748. user.set_password(password)
  749. user.save(using=self._db)
  750. return user
  751. def create_superuser(self, email, date_of_birth, password):
  752. """
  753. Creates and saves a superuser with the given email, date of
  754. birth and password.
  755. """
  756. user = self.create_user(
  757. email,
  758. password=password,
  759. date_of_birth=date_of_birth,
  760. )
  761. user.is_admin = True
  762. user.save(using=self._db)
  763. return user
  764. class MyUser(AbstractBaseUser):
  765. email = models.EmailField(
  766. verbose_name='email address',
  767. max_length=255,
  768. unique=True,
  769. )
  770. date_of_birth = models.DateField()
  771. is_active = models.BooleanField(default=True)
  772. is_admin = models.BooleanField(default=False)
  773. objects = MyUserManager()
  774. USERNAME_FIELD = 'email'
  775. REQUIRED_FIELDS = ['date_of_birth']
  776. def get_full_name(self):
  777. # The user is identified by their email address
  778. return self.email
  779. def get_short_name(self):
  780. # The user is identified by their email address
  781. return self.email
  782. def __str__(self): # __unicode__ on Python 2
  783. return self.email
  784. def has_perm(self, perm, obj=None):
  785. "Does the user have a specific permission?"
  786. # Simplest possible answer: Yes, always
  787. return True
  788. def has_module_perms(self, app_label):
  789. "Does the user have permissions to view the app `app_label`?"
  790. # Simplest possible answer: Yes, always
  791. return True
  792. @property
  793. def is_staff(self):
  794. "Is the user a member of staff?"
  795. # Simplest possible answer: All admins are staff
  796. return self.is_admin
  797. Then, to register this custom user model with Django's admin, the following
  798. code would be required in the app's ``admin.py`` file::
  799. from django import forms
  800. from django.contrib import admin
  801. from django.contrib.auth.models import Group
  802. from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
  803. from django.contrib.auth.forms import ReadOnlyPasswordHashField
  804. from customauth.models import MyUser
  805. class UserCreationForm(forms.ModelForm):
  806. """A form for creating new users. Includes all the required
  807. fields, plus a repeated password."""
  808. password1 = forms.CharField(label='Password', widget=forms.PasswordInput)
  809. password2 = forms.CharField(label='Password confirmation', widget=forms.PasswordInput)
  810. class Meta:
  811. model = MyUser
  812. fields = ('email', 'date_of_birth')
  813. def clean_password2(self):
  814. # Check that the two password entries match
  815. password1 = self.cleaned_data.get("password1")
  816. password2 = self.cleaned_data.get("password2")
  817. if password1 and password2 and password1 != password2:
  818. raise forms.ValidationError("Passwords don't match")
  819. return password2
  820. def save(self, commit=True):
  821. # Save the provided password in hashed format
  822. user = super(UserCreationForm, self).save(commit=False)
  823. user.set_password(self.cleaned_data["password1"])
  824. if commit:
  825. user.save()
  826. return user
  827. class UserChangeForm(forms.ModelForm):
  828. """A form for updating users. Includes all the fields on
  829. the user, but replaces the password field with admin's
  830. password hash display field.
  831. """
  832. password = ReadOnlyPasswordHashField()
  833. class Meta:
  834. model = MyUser
  835. fields = ('email', 'password', 'date_of_birth', 'is_active', 'is_admin')
  836. def clean_password(self):
  837. # Regardless of what the user provides, return the initial value.
  838. # This is done here, rather than on the field, because the
  839. # field does not have access to the initial value
  840. return self.initial["password"]
  841. class UserAdmin(BaseUserAdmin):
  842. # The forms to add and change user instances
  843. form = UserChangeForm
  844. add_form = UserCreationForm
  845. # The fields to be used in displaying the User model.
  846. # These override the definitions on the base UserAdmin
  847. # that reference specific fields on auth.User.
  848. list_display = ('email', 'date_of_birth', 'is_admin')
  849. list_filter = ('is_admin',)
  850. fieldsets = (
  851. (None, {'fields': ('email', 'password')}),
  852. ('Personal info', {'fields': ('date_of_birth',)}),
  853. ('Permissions', {'fields': ('is_admin',)}),
  854. )
  855. # add_fieldsets is not a standard ModelAdmin attribute. UserAdmin
  856. # overrides get_fieldsets to use this attribute when creating a user.
  857. add_fieldsets = (
  858. (None, {
  859. 'classes': ('wide',),
  860. 'fields': ('email', 'date_of_birth', 'password1', 'password2')}
  861. ),
  862. )
  863. search_fields = ('email',)
  864. ordering = ('email',)
  865. filter_horizontal = ()
  866. # Now register the new UserAdmin...
  867. admin.site.register(MyUser, UserAdmin)
  868. # ... and, since we're not using Django's built-in permissions,
  869. # unregister the Group model from admin.
  870. admin.site.unregister(Group)
  871. Finally, specify the custom model as the default user model for your project
  872. using the :setting:`AUTH_USER_MODEL` setting in your ``settings.py``::
  873. AUTH_USER_MODEL = 'customauth.MyUser'