gitlab-ci-lint 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,50 @@
1
+ # =============================================================================
2
+ # DECLARING VARIABLES
3
+ # =============================================================================
4
+
5
+ # DOCKERFILE PATH
6
+ PATH_DOCKERFILE=./Dockerfile
7
+
8
+ # DOCKERFILE CONTENTX
9
+ CONTEXT_DOCKERFILE=./
10
+
11
+ # CONTAINERS
12
+ DOCKER_CONTAINER_LIST:=$(shell docker ps -aq)
13
+
14
+ # =============================================================================
15
+ # DOCKER BUILD
16
+ # =============================================================================
17
+
18
+ build:
19
+ docker image build --no-cache -t gitlab-ci-lint -f ${PATH_DOCKERFILE} ${CONTEXT_DOCKERFILE}
20
+
21
+ system:
22
+ docker system prune -af
23
+
24
+ volume:
25
+ docker volume prune -f
26
+
27
+ network:
28
+ docker network prune -f
29
+
30
+ stop:
31
+ docker stop ${DOCKER_CONTAINER_LIST}
32
+
33
+ remove:
34
+ docker rm ${DOCKER_CONTAINER_LIST}
35
+
36
+ # =============================================================================
37
+ # DOCKER-COMPOSE
38
+ # =============================================================================
39
+
40
+ compose:
41
+ docker-compose up --build
42
+
43
+ back:
44
+ docker-compose up --build -d
45
+
46
+ down:
47
+ docker-compose down
48
+
49
+ delete:
50
+ docker-compose down --rmi all
data/README.md CHANGED
@@ -1 +1,49 @@
1
- # GitLab CI Linter
1
+ # GitLab CI Linter
2
+
3
+ ## 🎒 How to contribute
4
+
5
+ 1. Make a **Fork**.
6
+ 2. Follow the project organization.
7
+ 3. Add the file to the appropriate level folder - If the folder does not exist, create according to the standard.
8
+ 4. Make the **Commit**.
9
+ 5. Open a **Pull Request**.
10
+ 6. Wait for your pull request to be accepted.. 🚀
11
+
12
+ Remember: There is no bad code, there are different views/versions of solving the same problem. 😊
13
+
14
+ ## 🔔 Add to git and push
15
+
16
+ You must send the project to your GitHub after the modifications
17
+
18
+ ```bash
19
+ git add -f .
20
+ git commit -m "Added - Fixing somethings"
21
+ git push origin master
22
+ ```
23
+
24
+ ## 📋 Versioning
25
+
26
+ - [CHANGELOG](CHANGELOG.md)
27
+
28
+ ## 📜 License
29
+
30
+ Distributed under the MIT License. See [LICENSE](LICENSE) for more information.
31
+
32
+ ## ☎️ Contacts
33
+
34
+ Hey!! If you like this project or if you find some bugs feel free to contact me in my channels:
35
+
36
+ * **Email**: luccapsm@gmail.com
37
+ * **Linkedin**: www.linkedin.com/in/lucca-pessoa-4abb71138/
38
+
39
+ [![Facebook](https://github.frapsoft.com/social/facebook.png)](https://www.facebook.com/lucca.pessoa.9)
40
+ [![Github](https://github.frapsoft.com/social/github.png)](https://github.com/lpmatos)
41
+
42
+
43
+ ## Project Status
44
+
45
+ * 🔛 In production
46
+
47
+ ---
48
+
49
+ Feito com ❤️ by **Lucca Pessoa**
@@ -1,11 +1,16 @@
1
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "/../lib"))
2
- require "gitlab/ci/lint"
3
-
4
- infile = ARGV.shift
5
-
6
- unless infile
7
- $stderr.puts("Usage #{$0} <path/to/.gitlab-ci.yml>")
8
- exit 1
9
- end
10
-
11
- Gitlab::Ci::Lint.validate(infile)
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "/../lib"))
2
+
3
+ require "gitlab/ci/lint"
4
+ require "gitlab/ci/lint/arguments"
5
+ require "gitlab/ci/lint/configuration"
6
+
7
+ arguments = GitLab::CI::Lint::Arguments.new
8
+ options = arguments.command_line_parser()
9
+
10
+ configuration = GitLab::CI::Lint::Configuration.new
11
+
12
+ values = options["values"] ?
13
+ options["values"] : (configuration.values ?
14
+ configuration.values : "values.yml")
15
+
16
+ Gitlab::Ci::Lint.validate(values, configuration, options)
@@ -0,0 +1,45 @@
1
+ # =============================================================================
2
+ # BASE CONFIGURATION
3
+ # =============================================================================
4
+
5
+ version: "3.7"
6
+
7
+ # =============================================================================
8
+ # SERVICES
9
+ # =============================================================================
10
+
11
+ services:
12
+
13
+ # =============================================================================
14
+ # GITLAB CI LINT
15
+ # =============================================================================
16
+
17
+ gitlab-ci-lint:
18
+ container_name: ${CONTAINER_NAME}
19
+ env_file: ./.env
20
+ build:
21
+ context: ./${PATH_DOCKERFILE}
22
+ dockerfile: Dockerfile
23
+ entrypoint: >
24
+ /bin/sh -c "
25
+ set -e
26
+ ruby ./bin/gitlab_ci_lint
27
+ /bin/bash || exit 0
28
+ "
29
+ restart: unless-stopped
30
+ stdin_open: true
31
+ tty: true
32
+ logging:
33
+ driver: "json-file"
34
+ options:
35
+ max-size: "500k"
36
+ max-file: "20"
37
+ networks:
38
+ - gitlab-ci-lint
39
+
40
+ # =============================================================================
41
+ # NETWORKS
42
+ # =============================================================================
43
+
44
+ networks:
45
+ gitlab-ci-lint:
@@ -0,0 +1,128 @@
1
+ # Ruby Sub and Gsub - Replace String
2
+
3
+ Em Ruby, quando estamos falando da classe String, no geral, podemos fazer o replace do conteúdo de uma string de duas formas:
4
+
5
+ * Utilizando o método sub().
6
+ * Utilizando o método gsub().
7
+
8
+ Expressões Regulares também são utilizadas, porém para casos um pouco mais complexos.
9
+
10
+ ## Description
11
+
12
+ Portanto, as substituições de string podem ser feitas com os métodos sub() e gsub(). Eles são métodos de substituição da classe String. A grande diferença entre os dois é que o gsub() aplicará a substituição globalmente.
13
+
14
+ Nesses métodos podemos utilizar Expressões Regulares ou Strings como argumentos.
15
+
16
+ ## Exemples
17
+
18
+ Vamos iniciar com um exemplo. Usamos o sub! para substituirmos inline e o sub para substituir retornando uma outra string. Nessa chamadas o primeiro argumento é substituído pelo segundo.
19
+
20
+ ```ruby
21
+ animal = "gato"
22
+
23
+ # Replace string at with ote.
24
+ animal.sub!("at", "ote")
25
+ puts animal
26
+
27
+ animal = "passarinho"
28
+
29
+ # This version of sub does not change the string in-place.
30
+ animal = animal.sub("inho", "ado")
31
+ puts animal
32
+ ```
33
+
34
+ ## Gsub and Sub
35
+
36
+ O método sub() substitui apenas a primeira instância de uma string por outra. Enquanto isso, o gsub, substitui todas as instâncias.
37
+
38
+ Assim, o gsub() é mais próximo de um método replace string. Sub é conceitualmente um mpetodo de substituir a primeira string.
39
+
40
+ ```ruby
41
+ value = "abc abc"
42
+ puts value
43
+
44
+ # Sub replaces just the first instance.
45
+ value = value.sub("abc", "---")
46
+ puts value
47
+
48
+ # Gsub replaces all instances.
49
+ value = value.gsub("abc", "---")
50
+ puts value
51
+ ```
52
+
53
+ ## Substring
54
+
55
+ Podemos atribuir uma substring dentro de uma string. Essa sintaxe tem o mesmo efeito de chamar o método sub em uma string. Irá ser substituído apenas a primeira ocorrência.
56
+
57
+ Dicas: Expressões Regulares, intervalos e índices podem ser usados. A atribuição de substring é versátil e fácil de executar.
58
+
59
+ ```ruby
60
+ value = "abc abc"
61
+ puts value
62
+
63
+ # A substring can be changed within a string.
64
+ # ... Only the first instance is replaced.
65
+ value["abc"] = "def"
66
+ puts value
67
+ ```
68
+
69
+ ## Regex - Sub
70
+
71
+ Podemos especificar uma Regex como primeiro argumento para sub() e gsub(). Qualquer metacaractere de expressão regular pode ser utilizado aqui.
72
+
73
+ ```ruby
74
+ value = "cat and dog"
75
+
76
+ # Replaced at a matching the regexp with another string.
77
+ value.sub!(/c\w\w/, "bird")
78
+ puts value
79
+ ```
80
+
81
+ Regexp pattern:
82
+
83
+ * c The lowercase letter "c".
84
+ * \w A word character (letter or digit).
85
+
86
+ ## Regex - Gsub
87
+
88
+ O método gsub também pode ser utilizado com expressão regular. Ao contrário do sub, ele irá substituir todas as ocorrências.
89
+
90
+ ```ruby
91
+ value = "quickly, slowly or happily"
92
+
93
+ # Replace all word sending with "ly" with a string.
94
+ value.gsub!(/\w+ly/, "REP")
95
+ puts value
96
+ ```
97
+
98
+ Regexp pattern:
99
+
100
+
101
+ Ruby program that uses gsub with regexp
102
+
103
+ value = "quickly, slowly or happily"
104
+
105
+ # Replace all word sending with "ly" with a string.
106
+ value.gsub!(/\w+ly/, "REP")
107
+ puts value
108
+
109
+ Output
110
+
111
+ REP, REP or REP
112
+
113
+ Regexp pattern
114
+
115
+ * \w+ One or more word characters.
116
+ * ly The lowercase substring "ly".
117
+
118
+ ## Methods Block
119
+
120
+ Os métodos sub e gsub podem ser usados com blocos de métodos.
121
+
122
+ ```ruby
123
+ value = "bird and fish"
124
+
125
+ # Replace all four-letter words with an uppercase version.
126
+ value.gsub!(/\w{4}/) {|word| "[" + word.upcase() + "]"}
127
+ puts value
128
+ ```
@@ -23,9 +23,6 @@ Gem::Specification.new do |spec|
23
23
  spec.bindir = "bin"
24
24
  spec.require_paths = ["lib"]
25
25
  spec.license = 'MIT'
26
- spec.add_development_dependency "bundler", "~> 1.16"
27
- spec.add_development_dependency "rake", "~> 10.0"
28
- spec.add_development_dependency "rspec", "~> 3.0"
29
26
  spec.add_development_dependency "httparty", "~> 0.18.0"
30
27
  spec.add_development_dependency "OptionParser", "~> 0.5.1"
31
28
  spec.add_development_dependency "yaml", "~> 0.1.0"
@@ -1,50 +1,50 @@
1
- module Gitlab
2
- module Ci
3
- module Lint
4
- require File.expand_path("lint/reader/yml", File.dirname(__FILE__))
5
- require File.expand_path("lint/settings/arguments", File.dirname(__FILE__))
6
- require File.expand_path("lint/settings/configuration", File.dirname(__FILE__))
7
- require File.expand_path("lint/settings/log", File.dirname(__FILE__))
8
- require File.expand_path("lint/client", File.dirname(__FILE__))
9
-
10
- def self.validate gitlab_ci_config
11
- unless gitlab_ci_config
12
- $stderr.puts('Error: You must specify the path to a .gitlab-ci.yml')
13
- return 1
14
- end
15
- gitlab_ci_config = File.absolute_path(gitlab_ci_config)
16
- unless File.readable?(gitlab_ci_config)
17
- $stderr.puts("Error: Could not find file at '#{gitlab_ci_config}'")
18
- return 1
19
- end
20
- begin
21
- configuration = Configuration.new
22
- logger = Log.instance
23
- yml_reader = ReaderYMLFile.new(gitlab_ci_config)
24
- options = command_line_parser()
25
- values = yml_reader.get_content
26
- gitlab = values["gitlab"]
27
-
28
- gitlab_endpoint = options["endpoint"] ?
29
- options["endpoint"] : ((!gitlab["endpoint"].to_s.empty? && !gitlab["endpoint"].nil?) ?
30
- gitlab["endpoint"] : configuration.gitlab_endpoint)
31
-
32
- gitlab_token = options["token"] ?
33
- options["token"] : ((!gitlab["token"].to_s.empty? && !gitlab["token"].nil?) ?
34
- gitlab["token"] : configuration.gitlab_token)
35
-
36
- logger.info("Starting...")
37
-
38
- puts "\nEndpoint: #{gitlab_endpoint}"
39
- puts "Token: #{gitlab_token}\n"
40
- rescue StandardError => e
41
- $stderr.puts("Invalid: #{gitlab_ci_config}")
42
- $stderr.puts(" * #{e}")
43
- return 1
44
- end
45
- $stdout.puts("OK: #{gitlab_ci_config}")
46
- return 0
47
- end
48
- end
49
- end
50
- end
1
+ module Gitlab
2
+ module Ci
3
+ module Lint
4
+ require File.expand_path("lint/yml", File.dirname(__FILE__))
5
+ require File.expand_path("lint/log", File.dirname(__FILE__))
6
+ require File.expand_path("lint/system", File.dirname(__FILE__))
7
+ require File.expand_path("lint/client", File.dirname(__FILE__))
8
+
9
+ def self.validate values, configuration, options
10
+ system = GitLab::CI::Lint::System.new
11
+ client = GitLab::CI::Lint::Client.new
12
+
13
+ system.file_exist?(values, "Error: You must specify the values.yml file")
14
+
15
+ values = File.absolute_path(values)
16
+
17
+ system.file_is_readable?(values, "Error: Could not find file at '#{values}'")
18
+
19
+ yml_reader = GitLab::CI::Lint::YMLReader.new(values)
20
+ content = yml_reader.get_content
21
+
22
+ gitlab = content["gitlab"]
23
+
24
+ logger = GitLab::CI::Lint::Log.instance
25
+
26
+ gitlab_endpoint = options["endpoint"] ?
27
+ options["endpoint"] : ((!gitlab["endpoint"].to_s.empty? && !gitlab["endpoint"].nil?) ?
28
+ gitlab["endpoint"] : configuration.gitlab_endpoint)
29
+
30
+ gitlab_ci_file = options["file"] ?
31
+ options["file"] : ((!gitlab["file"].to_s.empty? && !gitlab["file"].nil?) ?
32
+ gitlab["file"] : configuration.gitlab_ci_file)
33
+
34
+ logger.info("Starting - 1.0.0...")
35
+
36
+ result = client.get_gitlab_ci_lint(gitlab_endpoint, gitlab_ci_file)
37
+
38
+ if result["status"] == "valid"
39
+ puts "\nYour GitLab CI File is Okay: #{result}".colorize(:green)
40
+ else
41
+ puts "\nYour GitLab CI File is Invalid. Information:\n".colorize(:red)
42
+ puts result["errors"]
43
+ end
44
+
45
+ return 0
46
+ end
47
+
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,11 @@
1
+ require "gitlab/ci/lint/client"
2
+
3
+ module GitLab
4
+ module CI
5
+ module Lint
6
+ class Actions < GitLab::CI::Lint::Client
7
+
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,69 @@
1
+ require "optparse"
2
+ require "colorize"
3
+ require "gitlab/ci/lint/version"
4
+
5
+ module GitLab
6
+ module CI
7
+ module Lint
8
+ class Arguments
9
+ attr_reader :program_name
10
+
11
+ def initialize
12
+ @program_name = File.basename(__FILE__).colorize(:yellow)
13
+ @program_version = Gitlab::Ci::Lint::VERSION.colorize(:yellow)
14
+ @options = {
15
+ verbose: false
16
+ }
17
+ end
18
+
19
+ def command_line_parser
20
+ OptionParser.new do |opts|
21
+ opts.banner = "Usage: example.rb [options]"
22
+ opts.on("-h", "--helper", "Show helper documentation") { |value| @options[:help] = helper() }
23
+ opts.on("-e", "--endpoint [GITLAB ENDPOINT]", "GitLab Endpoint") { |value| @options[:endpoint] = value }
24
+ opts.on("-t", "--token [GITLAB TOKEN]", "GitLab Token") { |value| @options[:token] = value }
25
+ opts.on("-f", "--file [GITLAB CI FILE]", "GitLab CI File") { |value| @options[:file] = value }
26
+ opts.on("-v", "--values [VALUES FILE]", "Values File") { |value| @options[:values] = value }
27
+ opts.on("-l", "--log [LOG GILE]", "Log File") { |value| @options[:log] = value }
28
+ opts.on("--verbose", "If set, print verbose output") { |value| @options[:verbose] = true }
29
+ opts.on("--version", "Show GitLab CI Lint Version") { |value| @options[:help] = version() }
30
+ end.parse!
31
+ return @options
32
+ end
33
+
34
+ private
35
+
36
+ def helper
37
+ string = """
38
+
39
+ Command Line Helper to the Program - #{@program_name}
40
+ Usage Exemple: ruby example.rb [global options] [command [command options]] [PATH]
41
+
42
+ Global options:
43
+ -h | --helper show GitLab CI help.
44
+ -e | --endpoint root URL of the GitLab instance to use API (default: 'https://gitlab.com')
45
+ -f | --file FILE is the relative or absolute path to the gitlab-ci file
46
+ -d | --directory DIR is the directory from where to search for gitlab-ci file and git repository (default: '.')
47
+ -t | --timeout timeout in second after which http request to GitLab API will timeout (and the program will fails) (default: 5)
48
+ -n | --no-color don't color output. By defaults the output is colorized if a compatible terminal is detected.
49
+ -v | --values Values file with information.
50
+ -l | --log LOG is the log file path.
51
+ -v | --verbose verbose mode.
52
+ -V | --version print the version information.
53
+ """
54
+ puts string
55
+ exit 1
56
+ end
57
+
58
+ def version
59
+ string = """
60
+
61
+ GitLab CI Lint Version: #{@program_version}
62
+ """
63
+ puts string
64
+ exit
65
+ end
66
+ end
67
+ end
68
+ end
69
+ end