mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +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
		
			
				
	
	
		
			120 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			3.2 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"
 | |
| 	"fmt"
 | |
| )
 | |
| 
 | |
| // ListFollowers lists the followers for a user. Passing the empty string will
 | |
| // fetch followers for the authenticated user.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/users/followers/#list-followers-of-a-user
 | |
| func (s *UsersService) ListFollowers(ctx context.Context, user string, opt *ListOptions) ([]*User, *Response, error) {
 | |
| 	var u string
 | |
| 	if user != "" {
 | |
| 		u = fmt.Sprintf("users/%v/followers", user)
 | |
| 	} else {
 | |
| 		u = "user/followers"
 | |
| 	}
 | |
| 	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 users []*User
 | |
| 	resp, err := s.client.Do(ctx, req, &users)
 | |
| 	if err != nil {
 | |
| 		return nil, resp, err
 | |
| 	}
 | |
| 
 | |
| 	return users, resp, nil
 | |
| }
 | |
| 
 | |
| // ListFollowing lists the people that a user is following. Passing the empty
 | |
| // string will list people the authenticated user is following.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/users/followers/#list-users-followed-by-another-user
 | |
| func (s *UsersService) ListFollowing(ctx context.Context, user string, opt *ListOptions) ([]*User, *Response, error) {
 | |
| 	var u string
 | |
| 	if user != "" {
 | |
| 		u = fmt.Sprintf("users/%v/following", user)
 | |
| 	} else {
 | |
| 		u = "user/following"
 | |
| 	}
 | |
| 	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 users []*User
 | |
| 	resp, err := s.client.Do(ctx, req, &users)
 | |
| 	if err != nil {
 | |
| 		return nil, resp, err
 | |
| 	}
 | |
| 
 | |
| 	return users, resp, nil
 | |
| }
 | |
| 
 | |
| // IsFollowing checks if "user" is following "target". Passing the empty
 | |
| // string for "user" will check if the authenticated user is following "target".
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/users/followers/#check-if-you-are-following-a-user
 | |
| func (s *UsersService) IsFollowing(ctx context.Context, user, target string) (bool, *Response, error) {
 | |
| 	var u string
 | |
| 	if user != "" {
 | |
| 		u = fmt.Sprintf("users/%v/following/%v", user, target)
 | |
| 	} else {
 | |
| 		u = fmt.Sprintf("user/following/%v", target)
 | |
| 	}
 | |
| 
 | |
| 	req, err := s.client.NewRequest("GET", u, nil)
 | |
| 	if err != nil {
 | |
| 		return false, nil, err
 | |
| 	}
 | |
| 
 | |
| 	resp, err := s.client.Do(ctx, req, nil)
 | |
| 	following, err := parseBoolResponse(err)
 | |
| 	return following, resp, err
 | |
| }
 | |
| 
 | |
| // Follow will cause the authenticated user to follow the specified user.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/users/followers/#follow-a-user
 | |
| func (s *UsersService) Follow(ctx context.Context, user string) (*Response, error) {
 | |
| 	u := fmt.Sprintf("user/following/%v", user)
 | |
| 	req, err := s.client.NewRequest("PUT", u, nil)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return s.client.Do(ctx, req, nil)
 | |
| }
 | |
| 
 | |
| // Unfollow will cause the authenticated user to unfollow the specified user.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/users/followers/#unfollow-a-user
 | |
| func (s *UsersService) Unfollow(ctx context.Context, user string) (*Response, error) {
 | |
| 	u := fmt.Sprintf("user/following/%v", user)
 | |
| 	req, err := s.client.NewRequest("DELETE", u, nil)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return s.client.Do(ctx, req, nil)
 | |
| }
 |