mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-30 19:08:37 +00:00 
			
		
		
		
	* add migrations * fix package dependency * fix lints * implements migrations except pull requests * add releases * migrating releases * fix bug * fix lint * fix migrate releases * fix tests * add rollback * pull request migtations * fix import * fix go module vendor * add tests for upload to gitea * more migrate options * fix swagger-check * fix misspell * add options on migration UI * fix log error * improve UI options on migrating * add support for username password when migrating from github * fix tests * remove comments and fix migrate limitation * improve error handles * migrate API will also support migrate milestones/labels/issues/pulls/releases * fix tests and remove unused codes * add DownloaderFactory and docs about how to create a new Downloader * fix misspell * fix migration docs * Add hints about migrate options on migration page * fix tests
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2013 The go-github AUTHORS. All rights reserved.
 | |
| //
 | |
| // Use of this source code is governed by a BSD-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package github
 | |
| 
 | |
| import "context"
 | |
| 
 | |
| // UserEmail represents user's email address
 | |
| type UserEmail struct {
 | |
| 	Email    *string `json:"email,omitempty"`
 | |
| 	Primary  *bool   `json:"primary,omitempty"`
 | |
| 	Verified *bool   `json:"verified,omitempty"`
 | |
| }
 | |
| 
 | |
| // ListEmails lists all email addresses for the authenticated user.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/users/emails/#list-email-addresses-for-a-user
 | |
| func (s *UsersService) ListEmails(ctx context.Context, opt *ListOptions) ([]*UserEmail, *Response, error) {
 | |
| 	u := "user/emails"
 | |
| 	u, err := addOptions(u, opt)
 | |
| 	if err != nil {
 | |
| 		return nil, nil, err
 | |
| 	}
 | |
| 
 | |
| 	req, err := s.client.NewRequest("GET", u, nil)
 | |
| 	if err != nil {
 | |
| 		return nil, nil, err
 | |
| 	}
 | |
| 
 | |
| 	var emails []*UserEmail
 | |
| 	resp, err := s.client.Do(ctx, req, &emails)
 | |
| 	if err != nil {
 | |
| 		return nil, resp, err
 | |
| 	}
 | |
| 
 | |
| 	return emails, resp, nil
 | |
| }
 | |
| 
 | |
| // AddEmails adds email addresses of the authenticated user.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/users/emails/#add-email-addresses
 | |
| func (s *UsersService) AddEmails(ctx context.Context, emails []string) ([]*UserEmail, *Response, error) {
 | |
| 	u := "user/emails"
 | |
| 	req, err := s.client.NewRequest("POST", u, emails)
 | |
| 	if err != nil {
 | |
| 		return nil, nil, err
 | |
| 	}
 | |
| 
 | |
| 	var e []*UserEmail
 | |
| 	resp, err := s.client.Do(ctx, req, &e)
 | |
| 	if err != nil {
 | |
| 		return nil, resp, err
 | |
| 	}
 | |
| 
 | |
| 	return e, resp, nil
 | |
| }
 | |
| 
 | |
| // DeleteEmails deletes email addresses from authenticated user.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/users/emails/#delete-email-addresses
 | |
| func (s *UsersService) DeleteEmails(ctx context.Context, emails []string) (*Response, error) {
 | |
| 	u := "user/emails"
 | |
| 	req, err := s.client.NewRequest("DELETE", u, emails)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return s.client.Do(ctx, req, nil)
 | |
| }
 |