* 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
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2017 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"
 | |
| )
 | |
| 
 | |
| // ProjectListOptions specifies the optional parameters to the
 | |
| // OrganizationsService.ListProjects and RepositoriesService.ListProjects methods.
 | |
| type ProjectListOptions struct {
 | |
| 	// Indicates the state of the projects to return. Can be either open, closed, or all. Default: open
 | |
| 	State string `url:"state,omitempty"`
 | |
| 
 | |
| 	ListOptions
 | |
| }
 | |
| 
 | |
| // ListProjects lists the projects for a repo.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/projects/#list-repository-projects
 | |
| func (s *RepositoriesService) ListProjects(ctx context.Context, owner, repo string, opt *ProjectListOptions) ([]*Project, *Response, error) {
 | |
| 	u := fmt.Sprintf("repos/%v/%v/projects", owner, repo)
 | |
| 	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
 | |
| 	}
 | |
| 
 | |
| 	// TODO: remove custom Accept headers when APIs fully launch.
 | |
| 	req.Header.Set("Accept", mediaTypeProjectsPreview)
 | |
| 
 | |
| 	var projects []*Project
 | |
| 	resp, err := s.client.Do(ctx, req, &projects)
 | |
| 	if err != nil {
 | |
| 		return nil, resp, err
 | |
| 	}
 | |
| 
 | |
| 	return projects, resp, nil
 | |
| }
 | |
| 
 | |
| // CreateProject creates a GitHub Project for the specified repository.
 | |
| //
 | |
| // GitHub API docs: https://developer.github.com/v3/projects/#create-a-repository-project
 | |
| func (s *RepositoriesService) CreateProject(ctx context.Context, owner, repo string, opt *ProjectOptions) (*Project, *Response, error) {
 | |
| 	u := fmt.Sprintf("repos/%v/%v/projects", owner, repo)
 | |
| 	req, err := s.client.NewRequest("POST", u, opt)
 | |
| 	if err != nil {
 | |
| 		return nil, nil, err
 | |
| 	}
 | |
| 
 | |
| 	// TODO: remove custom Accept headers when APIs fully launch.
 | |
| 	req.Header.Set("Accept", mediaTypeProjectsPreview)
 | |
| 
 | |
| 	project := &Project{}
 | |
| 	resp, err := s.client.Do(ctx, req, project)
 | |
| 	if err != nil {
 | |
| 		return nil, resp, err
 | |
| 	}
 | |
| 
 | |
| 	return project, resp, nil
 | |
| }
 |