aboutsummaryrefslogtreecommitdiffstats
path: root/routers/user/setting.go
Commit message (Collapse)AuthorAgeFilesLines
* fix #13 (#1042)Lunny Xiao2017-02-251-1/+1
|
* fix 500 when change user setting email to an exist email (#1039)Lunny Xiao2017-02-251-0/+5
|
* Oauth2 consumer (#679)Willem van Dreumel2017-02-221-1/+45
| | | | | | | | | | | | | | | | | | | | | | | | | * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
* Two factor authentication support (#630)Andrew2017-01-161-0/+194
| | | | | | | | | | | | | | | | | | | | | | | | | | * Initial commit for 2FA support Signed-off-by: Andrew <write@imaginarycode.com> * Add vendored files * Add missing depends * A few clean ups * Added improvements, proper encryption * Better encryption key * Simplify "key" generation * Make 2FA enrollment page more robust * Fix typo * Rename twofa/2FA to TwoFactor * UNIQUE INDEX -> UNIQUE
* Add Keep email private (see issue #571). (#571)derSuessmann2017-01-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Add site-wide option DEFAULT_KEEP_EMAIL_PRIVATE. - Add the new option to the install and admin/config pages. - Add the new option to app.ini in the service section. - Add the new option to the settings struct. - Add English text strings to i18n. - Add field KeepEmailPrivate to user struct. - Add field KeepEmailPrivate to user form. - Add option to UI. - Add using noreply email address if user has "Keep Email Private". An email address <LowerName>@<NO_REPLY_ADDRESS> is now used in commit messages (and hopefully all other git log relevant places). The change relies on the fact that git commands should use user.NetGitSig(). - Add hiding of email address in UI, if user has set "Keep Email Private". - Add condition to show email address only on explore/users and user pages, if user has not set "Keep Email Private". - Add noreply email in API if set "Keep Email Private". - Add a new service setting NO_REPLY_ADDRESS. The value of this setting is used as the domain part for the user's email address in git log, iff he decides to keep his email address private. If the user decides to keep his email address private and this option is not set 'noreply.example.org' is used, which no MTA should send email to. Add NO_REPLY_ADDRESS to conf/app.ini.
* Notifications - Step 2Andrey Nering2016-12-301-1/+0
|
* Fix random string generator (#384)Denis Denisov2016-12-201-1/+5
| | | | | | | | | | | * Remove unused custom-alphabet feature of random string generator Fix random string generator Random string generator should return error if it fails to read random data via crypto/rand * Fixes variable (un)initialization mixed assign Update test GetRandomString
* fixed vulnerabilities (#392)Lunny Xiao2016-12-151-2/+2
|
* Fixes typosBwko2016-11-271-1/+1
|
* Golint fixed for modules/setting (#262)Lunny Xiao2016-11-271-19/+19
| | | | | | * golint fixed for modules/setting * typo fixed and renamed UNIXSOCKET to UnixSocket
* golint fixed for parts of routers root, dev, user and org dirs (#167)Lunny Xiao2016-11-181-26/+44
| | | | | | | | * golint fixed for parts of routers root, dev and org dirs * add user/auth.go golint fixed * rename unnecessary exported to unexported and user dir golint fixed
* Update import paths from github.com/go-gitea to code.gitea.io (#135)Sandro Santilli2016-11-101-6/+6
| | | | | | | - Update import paths from github.com/go-gitea to code.gitea.io - Fix import path for travis See https://docs.travis-ci.com/user/languages/go#Go-Import-Path
* moreSandro Santilli2016-11-071-1/+1
|
* Change import reference to match gitea instead of gogs (#37)Rémy Boulanouar2016-11-031-6/+6
|
* router/repo: code refactoringUnknwon2016-08-301-1/+1
|
* Add support for federated avatars (#3320)Sandro Santilli2016-08-071-10/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support for federated avatars Fixes #3105 Removes avatar fetching duplication code Adds an "Enable Federated Avatar" checkbox in user settings (defaults to unchecked) Moves avatar settings all in the same form, making local and remote avatars mutually exclusive Renames UploadAvatarForm to AvatarForm as it's not anymore only for uploading * Run gofmt on all modified files * Move Avatar form in its own page * Add go-libravatar dependency to vendor/ dir Hopefully helps with accepting the contribution. See also #3214 * Revert "Add go-libravatar dependency to vendor/ dir" This reverts commit a8cb93ae640bbb90f7d25012fc257bda9fae9b82. * Make federated avatar setting a global configuration Removes the per-user setting * Move avatar handling back to base tool, disable federated avatar in offline mode * Format, handle error * Properly set fallback host * Use unsupported github.com mirror for importing go-libravatar * Remove comment showing life exists outside of github.com ... pity, but contribution would not be accepted otherwise * Use Combo for Get and Post methods over /avatar * FEDERATED_AVATAR -> ENABLE_FEDERATED_AVATAR * Fix persistance of federated avatar lookup checkbox at install time * Federated Avatars -> Enable Federated Avatars * Use len(string) == 0 instead of string == "" * Move import line where it belong See https://github.com/Unknwon/go-code-convention/blob/master/en-US/import_packages.md Pity the import url is still the unofficial one, but oh well... * Save a line (and waste much more expensive time) * Remove redundant parens * Remove an empty line * Remove empty lines * Reorder lines to make diff smaller * Remove another newline Unknwon review got me start a fight against newlines * Move DISABLE_GRAVATAR and ENABLE_FEDERATED_AVATAR after OFFLINE_MODE On re-reading the diff I figured what Unknwon meant here: https://github.com/gogits/gogs/pull/3320/files#r73741106 * Remove newlines that weren't there before my intervention
* Refactor User.Id to User.IDUnknwon2016-07-241-10/+10
|
* #2854 fix no mail notification when issue is closed/reopenedUnknwon2016-07-161-7/+6
|
* Rename module: middleware -> contextUnknwon2016-03-111-19/+19
|
* Added: Ability to delete org avatar.Tamás Molnár2016-03-061-6/+3
|
* #1157 some avatar setting changesUnknwon2016-03-051-9/+27
| | | | - Allow to delete current avatar
* #1692 add user email APIsUnknwon2015-12-151-1/+1
|
* #2154 minor fixUnknwon2015-12-111-1/+1
|
* #2154 fix form submit errorUnknwon2015-12-111-14/+25
|
* #2154 disable change user for non-local usersUnknwon2015-12-111-2/+4
| | | | - #2153 remove require for gravatar
* fix #976Unknwon2015-12-031-2/+2
|
* fix #2020Unknwon2015-11-241-1/+1
|
* fix #878Unknwon2015-11-181-1/+1
|
* fix #981Unknwon2015-09-171-2/+4
|
* drop oauth2 feature supportUnknwon2015-09-171-25/+0
|
* user gomail and new activate account email tplUnknwon2015-09-171-1/+1
| | | | | | - #1496: fallback plain text - #1002: add date header - #913: fix encoding of header
* finish all new user settings UIUnknwon2015-09-101-83/+66
|
* #1191 allow upload avatar for orgUnknwon2015-09-061-18/+22
| | | | Signed-off-by: Unknwon <u@gogs.io>
* new user profile settings UIUnknwon2015-09-061-7/+7
| | | | Signed-off-by: Unknwon <u@gogs.io>
* add confirmation to delete ssh keyUnknwon2015-08-201-48/+46
|
* new access token UIUnknwon2015-08-191-30/+26
|
* new delete account UI and password confirmationUnknwon2015-08-191-13/+9
|
* work on #1493Unknwon2015-08-171-1/+1
|
* #334: Add Deployment Key SupportUnknwon2015-08-061-20/+11
|
* #1070 Clearer error message for illegal charactersUnknwon2015-03-261-13/+12
|
* #1094: fix localeUnknwon2015-03-191-1/+1
|
* #1067: Deleting users should remove them from collaborator listsUnknwon2015-03-171-11/+4
| | | | - fix delete user but repository watches are not decreased
* models: able to rename user with diff letter cases #981Unknwon2015-02-221-4/+7
| | | | | - templates/org: mirror fix on name output - routers: add missing error check
* templates/user/settings/emial.tmpl: little fix on UIUnknwon2015-02-211-43/+37
| | | | | - routers/user: little code format - conf/locale: update French locale
* Implement #798 Flexible ssh-key inputPeter Smit2015-01-021-4/+9
| | | | It is now possible to input ssh keys in a number of formats: openssh, SSH2 or just the base64 encoded key.
* Small fixes to multiple_emails featurePeter2014-12-201-1/+1
|
* Finish method for having multiple emails/user.Peter2014-12-171-0/+108
| | | | | All basics are implemented. Missing are the right (localized) strings and the page markup could have a look at by a frontend guy.
* Fix 653Unknwon2014-11-221-3/+12
|
* more on change avatarUnknwon2014-11-211-1/+6
|
* custom avatar uploadUnknwon2014-11-211-0/+29
|