Rainbond/builder/parser/code/specification.go

135 lines
4.1 KiB
Go
Raw Normal View History

2018-03-14 14:12:26 +08:00
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
2018-01-17 22:06:58 +08:00
// RAINBOND, Application Management Platform
2018-03-14 14:33:31 +08:00
2018-01-17 22:06:58 +08:00
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version. For any non-GPL usage of Rainbond,
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
// must be obtained first.
2018-03-14 14:33:31 +08:00
2018-01-17 22:06:58 +08:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
2018-03-14 14:33:31 +08:00
2018-01-17 22:06:58 +08:00
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package code
import (
"io/ioutil"
"path"
"strings"
"github.com/goodrain/rainbond/util"
2018-01-17 22:06:58 +08:00
)
//Specification 规范
type Specification struct {
//是否符合规范
Conform bool
//不符合项目 解决方式
Noconform map[string]string
//建议规范项目 处理方式
Advice map[string]string
}
//各类型语言规范
var specification map[Lang]func(buildPath string) Specification
func init() {
specification = make(map[Lang]func(buildPath string) Specification)
specification[JavaJar] = javaJarCheck
specification[JavaMaven] = javaMavenCheck
}
//CheckCodeSpecification 检查语言规范
func CheckCodeSpecification(buildPath string, lang Lang) Specification {
if check, ok := specification[lang]; ok {
return check(buildPath)
}
return common()
}
//必须定义Procfile文件
//Procfile文件中定义的jar包必须存在
func javaJarCheck(buildPath string) Specification {
procfile, spec := checkProcfile(buildPath)
if spec != nil {
return *spec
}
if !procfile {
return Specification{
Conform: false,
Noconform: map[string]string{"识别为JavaJar语言,Procfile文件未定义": "主目录定义Procfile文件指定jar包启动方式参考格式:\n web: java $JAVA_OPTS -jar demo.jar"},
}
}
return common()
}
// 查找 pom.xml 文件中是否包含 org.springframework.boot
// 不包含(强制)
// pom.xml中必须引入 webapp-runner.jar
// packaging类型必须为war
// 包含
// 建议写Procfile不写的话平台默认设置
func javaMavenCheck(buildPath string) Specification {
procfile, spec := checkProcfile(buildPath)
if spec != nil {
return *spec
}
if ok, _ := util.FileExists(path.Join(buildPath, "pom.xml")); !ok {
return Specification{
Conform: false,
Noconform: map[string]string{"识别为JavaMaven语言工作目录未发现pom.xml文件": "定义pom.xml文件"},
}
}
//判断pom.xml中是否包含 org.springframework.boot定义
ok := util.SearchFileBody(path.Join(buildPath, "pom.xml"), "org.springframework.boot")
if !ok {
//默认只能打包成war包
war := util.SearchFileBody(path.Join(buildPath, "pom.xml"), "<packaging>war</packaging>")
if !war && !procfile {
//如果定义成jar包必须定义Procfile
return Specification{
Conform: false,
Noconform: map[string]string{"识别为JavaMaven语言非SpringBoot项目默认只支持War打包": "参看官方JaveMaven项目代码配置"},
}
}
//TODO: 检查procfile定义是否正确
}
return common()
}
//checkProcfile 检查Procfile文件
func checkProcfile(buildPath string) (bool, *Specification) {
if ok, _ := util.FileExists(path.Join(buildPath, "Procfile")); !ok {
return false, nil
}
procfile, err := ioutil.ReadFile(path.Join(buildPath, "Procfile"))
if err != nil {
return false, nil
}
infos := strings.Split(strings.TrimRight(string(procfile), " "), " ")
if len(infos) < 2 {
return true, &Specification{
Conform: false,
Noconform: map[string]string{"Procfile文件不符合规范": "参考格式\n web: 启动命令"},
}
}
if infos[0] != "web:" {
return true, &Specification{
Conform: false,
Noconform: map[string]string{"Procfile文件规范目前只支持 web: 开头": "参考格式\n web: 启动命令"},
}
}
return true, nil
}
func common() Specification {
return Specification{
Conform: true,
}
}