mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 16:01:32 +01:00 
			
		
		
		
	Fix invalid repo urls after change username (#10150)
* Fix invalid repo urls after change username * Update user.go Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									7d8a2d05cf
								
							
						
					
					
						commit
						74a4a1e17f
					
				| @ -1044,13 +1044,23 @@ func ChangeUserName(u *User, newUserName string) (err error) { | |||||||
| 	} else if isExist { | 	} else if isExist { | ||||||
| 		return ErrUserAlreadyExist{newUserName} | 		return ErrUserAlreadyExist{newUserName} | ||||||
| 	} | 	} | ||||||
|  | 	 | ||||||
|  | 	sess := x.NewSession() | ||||||
|  | 	defer sess.Close() | ||||||
|  | 	if err = sess.Begin(); err != nil { | ||||||
|  | 		return err | ||||||
|  | 	} | ||||||
|  | 
 | ||||||
|  | 	if _, err = sess.Exec("UPDATE `repository` SET owner_name=? WHERE owner_name=?", newUserName, u.Name); err != nil { | ||||||
|  | 		return fmt.Errorf("Change repo owner name: %v", err) | ||||||
|  | 	} | ||||||
| 
 | 
 | ||||||
| 	// Do not fail if directory does not exist | 	// Do not fail if directory does not exist | ||||||
| 	if err = os.Rename(UserPath(u.Name), UserPath(newUserName)); err != nil && !os.IsNotExist(err) { | 	if err = os.Rename(UserPath(u.Name), UserPath(newUserName)); err != nil && !os.IsNotExist(err) { | ||||||
| 		return fmt.Errorf("Rename user directory: %v", err) | 		return fmt.Errorf("Rename user directory: %v", err) | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	return nil | 	return sess.Commit() | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| // checkDupEmail checks whether there are the same email with the user | // checkDupEmail checks whether there are the same email with the user | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user