| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- package buildpacks
- import (
- "strings"
- "sync"
- "github.com/google/go-github/v41/github"
- "github.com/xanzy/go-gitlab"
- )
- type pythonRuntime struct {
- wg sync.WaitGroup
- }
- func NewPythonRuntime() Runtime {
- return &pythonRuntime{}
- }
- func (runtime *pythonRuntime) detectPipenvGithub(results chan struct {
- string
- bool
- }, directoryContent []*github.RepositoryContent) {
- pipfileFound := false
- pipfileLockFound := false
- for i := 0; i < len(directoryContent); i++ {
- name := directoryContent[i].GetName()
- if name == "Pipfile" {
- pipfileFound = true
- } else if name == "Pipfile.lock" {
- pipfileLockFound = true
- }
- if pipfileFound && pipfileLockFound {
- break
- }
- }
- if pipfileFound && pipfileLockFound {
- results <- struct {
- string
- bool
- }{pipenv, true}
- }
- runtime.wg.Done()
- }
- func (runtime *pythonRuntime) detectPipenvGitlab(results chan struct {
- string
- bool
- }, tree []*gitlab.TreeNode) {
- pipfileFound := false
- pipfileLockFound := false
- for i := 0; i < len(tree); i++ {
- name := tree[i].Name
- if name == "Pipfile" {
- pipfileFound = true
- } else if name == "Pipfile.lock" {
- pipfileLockFound = true
- }
- if pipfileFound && pipfileLockFound {
- break
- }
- }
- if pipfileFound && pipfileLockFound {
- results <- struct {
- string
- bool
- }{pipenv, true}
- }
- runtime.wg.Done()
- }
- func (runtime *pythonRuntime) detectPipGithub(results chan struct {
- string
- bool
- }, directoryContent []*github.RepositoryContent) {
- requirementsTxtFound := false
- for i := 0; i < len(directoryContent); i++ {
- name := directoryContent[i].GetName()
- if name == "requirements.txt" {
- requirementsTxtFound = true
- }
- }
- if requirementsTxtFound {
- results <- struct {
- string
- bool
- }{pip, true}
- }
- runtime.wg.Done()
- }
- func (runtime *pythonRuntime) detectPipGitlab(results chan struct {
- string
- bool
- }, tree []*gitlab.TreeNode) {
- requirementsTxtFound := false
- for i := 0; i < len(tree); i++ {
- name := tree[i].Name
- if name == "requirements.txt" {
- requirementsTxtFound = true
- }
- }
- if requirementsTxtFound {
- results <- struct {
- string
- bool
- }{pip, true}
- }
- runtime.wg.Done()
- }
- func (runtime *pythonRuntime) detectCondaGithub(results chan struct {
- string
- bool
- }, directoryContent []*github.RepositoryContent) {
- environmentFound := false
- packageListFound := false
- for i := 0; i < len(directoryContent); i++ {
- name := directoryContent[i].GetName()
- if name == "environment.yml" {
- environmentFound = true
- break
- } else if name == "package-list.txt" {
- packageListFound = true
- break
- }
- }
- if environmentFound || packageListFound {
- results <- struct {
- string
- bool
- }{conda, true}
- }
- runtime.wg.Done()
- }
- func (runtime *pythonRuntime) detectCondaGitlab(results chan struct {
- string
- bool
- }, tree []*gitlab.TreeNode) {
- environmentFound := false
- packageListFound := false
- for i := 0; i < len(tree); i++ {
- name := tree[i].Name
- if name == "environment.yml" {
- environmentFound = true
- break
- } else if name == "package-list.txt" {
- packageListFound = true
- break
- }
- }
- if environmentFound || packageListFound {
- results <- struct {
- string
- bool
- }{conda, true}
- }
- runtime.wg.Done()
- }
- func (runtime *pythonRuntime) detectStandaloneGithub(results chan struct {
- string
- bool
- }, directoryContent []*github.RepositoryContent) {
- pyFound := false
- for i := 0; i < len(directoryContent); i++ {
- name := directoryContent[i].GetName()
- if strings.HasSuffix(name, ".py") {
- pyFound = true
- break
- }
- }
- if pyFound {
- results <- struct {
- string
- bool
- }{standalone, true}
- }
- runtime.wg.Done()
- }
- func (runtime *pythonRuntime) detectStandaloneGitlab(results chan struct {
- string
- bool
- }, tree []*gitlab.TreeNode) {
- pyFound := false
- for i := 0; i < len(tree); i++ {
- name := tree[i].Name
- if strings.HasSuffix(name, ".py") {
- pyFound = true
- break
- }
- }
- if pyFound {
- results <- struct {
- string
- bool
- }{standalone, true}
- }
- runtime.wg.Done()
- }
- func (runtime *pythonRuntime) DetectGithub(
- client *github.Client,
- directoryContent []*github.RepositoryContent,
- owner, name, path string,
- repoContentOptions github.RepositoryContentGetOptions,
- paketo, heroku *BuilderInfo,
- ) error {
- results := make(chan struct {
- string
- bool
- }, 4)
- runtime.wg.Add(4)
- go runtime.detectPipenvGithub(results, directoryContent)
- go runtime.detectPipGithub(results, directoryContent)
- go runtime.detectCondaGithub(results, directoryContent)
- go runtime.detectStandaloneGithub(results, directoryContent)
- runtime.wg.Wait()
- close(results)
- paketoBuildpackInfo := BuildpackInfo{
- Name: "Python",
- Buildpack: "gcr.io/paketo-buildpacks/python",
- }
- herokuBuildpackInfo := BuildpackInfo{
- Name: "Python",
- Buildpack: "heroku/python",
- }
- if len(results) == 0 {
- paketo.Others = append(paketo.Others, paketoBuildpackInfo)
- heroku.Others = append(heroku.Others, herokuBuildpackInfo)
- return nil
- }
- paketo.Detected = append(paketo.Detected, paketoBuildpackInfo)
- heroku.Detected = append(heroku.Detected, herokuBuildpackInfo)
- return nil
- }
- func (runtime *pythonRuntime) DetectGitlab(
- client *gitlab.Client,
- tree []*gitlab.TreeNode,
- owner, name, path, ref string,
- paketo, heroku *BuilderInfo,
- ) error {
- results := make(chan struct {
- string
- bool
- }, 4)
- runtime.wg.Add(4)
- go runtime.detectPipenvGitlab(results, tree)
- go runtime.detectPipGitlab(results, tree)
- go runtime.detectCondaGitlab(results, tree)
- go runtime.detectStandaloneGitlab(results, tree)
- runtime.wg.Wait()
- close(results)
- paketoBuildpackInfo := BuildpackInfo{
- Name: "Python",
- Buildpack: "gcr.io/paketo-buildpacks/python",
- }
- herokuBuildpackInfo := BuildpackInfo{
- Name: "Python",
- Buildpack: "heroku/python",
- }
- if len(results) == 0 {
- paketo.Others = append(paketo.Others, paketoBuildpackInfo)
- heroku.Others = append(heroku.Others, herokuBuildpackInfo)
- return nil
- }
- paketo.Detected = append(paketo.Detected, paketoBuildpackInfo)
- heroku.Detected = append(heroku.Detected, herokuBuildpackInfo)
- return nil
- }
|