Skip to content

Commit

Permalink
Do not autocreate directory for new user/orgs (#4828) (#4849)
Browse files Browse the repository at this point in the history
  • Loading branch information
SagePtr authored and techknowlogick committed Sep 7, 2018
1 parent 3c6cc56 commit 303d7f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 0 additions & 4 deletions models/org.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,6 @@ func CreateOrganization(org, owner *User) (err error) {
return fmt.Errorf("insert team-user relation: %v", err)
}

if err = os.MkdirAll(UserPath(org.Name), os.ModePerm); err != nil {
return fmt.Errorf("create directory: %v", err)
}

return sess.Commit()
}

Expand Down
9 changes: 6 additions & 3 deletions models/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -798,8 +798,6 @@ func CreateUser(u *User) (err error) {

if _, err = sess.Insert(u); err != nil {
return err
} else if err = os.MkdirAll(UserPath(u.Name), os.ModePerm); err != nil {
return err
}

return sess.Commit()
Expand Down Expand Up @@ -898,7 +896,12 @@ func ChangeUserName(u *User, newUserName string) (err error) {
return fmt.Errorf("Delete repository wiki local copy: %v", err)
}

return os.Rename(UserPath(u.Name), UserPath(newUserName))
// Do not fail if directory does not exist
if err = os.Rename(UserPath(u.Name), UserPath(newUserName)); err != nil && !os.IsNotExist(err) {
return fmt.Errorf("Rename user directory: %v", err)
}

return nil
}

// checkDupEmail checks whether there are the same email with the user
Expand Down

0 comments on commit 303d7f7

Please sign in to comment.