mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Fix #266
This commit is contained in:
		
					parent
					
						
							
								c7f56d7483
							
						
					
				
			
			
				commit
				
					
						e84e0ab904
					
				
			
		
					 1 changed files with 6 additions and 3 deletions
				
			
		| 
						 | 
					@ -79,9 +79,9 @@ func init() {
 | 
				
			||||||
// PublicKey represents a SSH key.
 | 
					// PublicKey represents a SSH key.
 | 
				
			||||||
type PublicKey struct {
 | 
					type PublicKey struct {
 | 
				
			||||||
	Id                int64
 | 
						Id                int64
 | 
				
			||||||
	OwnerId           int64  `xorm:"UNIQUE(s) INDEX NOT NULL"`
 | 
						OwnerId           int64     `xorm:"UNIQUE(s) INDEX NOT NULL"`
 | 
				
			||||||
	Name              string `xorm:"UNIQUE(s) NOT NULL"`
 | 
						Name              string    `xorm:"UNIQUE(s) NOT NULL"`
 | 
				
			||||||
	Fingerprint       string
 | 
						Fingerprint       string    `xorm:"INDEX NOT NULL"`
 | 
				
			||||||
	Content           string    `xorm:"TEXT NOT NULL"`
 | 
						Content           string    `xorm:"TEXT NOT NULL"`
 | 
				
			||||||
	Created           time.Time `xorm:"CREATED"`
 | 
						Created           time.Time `xorm:"CREATED"`
 | 
				
			||||||
	Updated           time.Time
 | 
						Updated           time.Time
 | 
				
			||||||
| 
						 | 
					@ -209,6 +209,9 @@ func AddPublicKey(key *PublicKey) (err error) {
 | 
				
			||||||
		return errors.New("not enough output for calculating fingerprint: " + stdout)
 | 
							return errors.New("not enough output for calculating fingerprint: " + stdout)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	key.Fingerprint = strings.Split(stdout, " ")[1]
 | 
						key.Fingerprint = strings.Split(stdout, " ")[1]
 | 
				
			||||||
 | 
						if has, err := x.Get(&PublicKey{Fingerprint: key.Fingerprint}); err == nil && has {
 | 
				
			||||||
 | 
							return ErrKeyAlreadyExist
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Save SSH key.
 | 
						// Save SSH key.
 | 
				
			||||||
	if _, err = x.Insert(key); err != nil {
 | 
						if _, err = x.Insert(key); err != nil {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue