news_reader_cli 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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/bin/news_reader_cli +2 -3
- data/lib/news_reader_cli/api_key_input_validate.rb +30 -0
- data/lib/news_reader_cli/api_key_validate.rb +18 -16
- data/lib/news_reader_cli/cli.rb +32 -0
- data/lib/news_reader_cli/version.rb +1 -1
- data/lib/news_reader_cli.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 880b95a69ff20a7a2ae3931a34ffc7f894939626533875bf43c9cedbc4030539
|
4
|
+
data.tar.gz: 560ab6f114804d3ea56aa51e40a159e9db1e2bfc3e9cf4f8f60ad7ebd690b796
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aee2bce849d2059642ec85046b95a316c53c784dc33b94fdf5757675e871defae4524da2619ca435fca7d431fe73d40955b06eca4eb5df4bbb4dc2625ad246b2
|
7
|
+
data.tar.gz: 59f564d2d0b33b548491b74b675271dc06e7dbf284a5e292509c9d9f8284b5b859ed5fa743f30340ffa8e0d65009d833e192f137b458fa946b9c6c9182e94e05
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -27,7 +27,7 @@ Before launch the command line, Go to https://newsapi.org/docs/get-started to re
|
|
27
27
|
Type the below command and follow screen prompts
|
28
28
|
$ news_reader_cli
|
29
29
|
|
30
|
-
After message "please type in API Key from API News:" paste your API key received from API News. It is a hex string with 32 characters. The key will be saved on current
|
30
|
+
After message "please type in API Key from API News:" paste your API key received from API News. It is a hex string with 32 characters. The key will be saved on current directory, you won't be asked again when you launch it as the same directory.
|
31
31
|
|
32
32
|
Follow screen instructions to access News articles. Type Exit to end the program.
|
33
33
|
|
data/bin/news_reader_cli
CHANGED
@@ -4,9 +4,8 @@ require_relative "../lib/news_reader_cli"
|
|
4
4
|
# myapikey = open(File.expand_path(".newsapi.rb", "~/Development/m1/news_reader_cli")).read.strip
|
5
5
|
# binding.pry
|
6
6
|
|
7
|
-
NewsReaderCli::ApiKeyValidate.new.key_validate
|
7
|
+
# NewsReaderCli::ApiKeyValidate.new.key_validate
|
8
8
|
|
9
9
|
# binding.pry
|
10
|
-
|
11
|
-
Dotenv.load # defaul will looking for ('.env')
|
10
|
+
# Dotenv.load # defaul will looking for ('.env')
|
12
11
|
NewsReaderCli::CLI.new.start
|
@@ -0,0 +1,30 @@
|
|
1
|
+
class NewsReaderCli::ApiKeyInputValidate
|
2
|
+
|
3
|
+
# def key_input_validate
|
4
|
+
# puts "please type in API Key from API News:"
|
5
|
+
#
|
6
|
+
# @key = gets.chomp.strip
|
7
|
+
#
|
8
|
+
# while !@key.match(/([0-9]|\w){32}/) do
|
9
|
+
#
|
10
|
+
# break if @key == "exit"
|
11
|
+
# # need to get out of the loop and remove the file .env
|
12
|
+
#
|
13
|
+
# puts <<-HEREDOC
|
14
|
+
#
|
15
|
+
# Your API keys value might missing digits or contain invalid Charactors.
|
16
|
+
# Please verify your API Key and try again. Thanks!
|
17
|
+
#
|
18
|
+
# HEREDOC
|
19
|
+
#
|
20
|
+
# @key = gets.chomp.strip
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# end #end of method
|
24
|
+
#
|
25
|
+
#
|
26
|
+
# def validated_key
|
27
|
+
# @key
|
28
|
+
# end
|
29
|
+
|
30
|
+
end #end of class
|
@@ -11,22 +11,24 @@ class NewsReaderCli::ApiKeyValidate
|
|
11
11
|
# a condition verify key value is AES 128 Hex string 32 chars
|
12
12
|
|
13
13
|
key = gets.chomp.strip
|
14
|
-
|
15
|
-
while !key.match(/([0-9]|\w){32}/) do
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
end
|
29
|
-
|
14
|
+
#
|
15
|
+
# while !key.match(/([0-9]|\w){32}/) do
|
16
|
+
#
|
17
|
+
# break if key == "exit"
|
18
|
+
# # need to get out of the loop and remove the file .env
|
19
|
+
#
|
20
|
+
# puts <<-HEREDOC
|
21
|
+
#
|
22
|
+
# Your API keys value shows invalid.
|
23
|
+
# Please check verify your API Key and type in again.
|
24
|
+
#
|
25
|
+
# HEREDOC
|
26
|
+
#
|
27
|
+
# key = gets.chomp.strip
|
28
|
+
# end
|
29
|
+
|
30
|
+
|
31
|
+
#key = key_instance.validated_key
|
30
32
|
key_file.puts("key = #{key}")
|
31
33
|
key_file.close
|
32
34
|
|
data/lib/news_reader_cli/cli.rb
CHANGED
@@ -3,6 +3,38 @@ class NewsReaderCli::CLI
|
|
3
3
|
|
4
4
|
def start
|
5
5
|
|
6
|
+
|
7
|
+
# key_instance = NewsReaderCli::ApiKeyInputValidate.new
|
8
|
+
# key_instance.key_input_validate
|
9
|
+
|
10
|
+
NewsReaderCli::ApiKeyValidate.new.key_validate
|
11
|
+
Dotenv.load
|
12
|
+
#
|
13
|
+
# if !File.exist?(".env")
|
14
|
+
# key_file = File.new(".env", "w+")
|
15
|
+
# key = key_instance.validated_key
|
16
|
+
# key_file.puts("key = #{key}")
|
17
|
+
# key_file.close
|
18
|
+
|
19
|
+
# end
|
20
|
+
|
21
|
+
#compare input key with env variable
|
22
|
+
#if they are equal, keep going. if not change the value.
|
23
|
+
|
24
|
+
# if key_instance.validated_key != ENV['key']#.strip
|
25
|
+
# key = key_instance.validated_key
|
26
|
+
# key_file.puts("key = #{key}")
|
27
|
+
# key_file.close
|
28
|
+
#
|
29
|
+
# end
|
30
|
+
|
31
|
+
# assigned_api_key = ENV['key'].strip
|
32
|
+
#
|
33
|
+
# if assigned_api_key == 'exit'
|
34
|
+
# puts "Goodbye"
|
35
|
+
# return
|
36
|
+
# end
|
37
|
+
|
6
38
|
NewsReaderCli::ApiService.newsapi
|
7
39
|
puts "Welcome to the News Reader CLI!!!"
|
8
40
|
menu
|
data/lib/news_reader_cli.rb
CHANGED
@@ -5,6 +5,7 @@ require_relative "./news_reader_cli/version" #require "news_reader_cli/version"
|
|
5
5
|
require_relative "./news_reader_cli/cli"
|
6
6
|
require_relative "./news_reader_cli/api_service"
|
7
7
|
require_relative "./news_reader_cli/article"
|
8
|
+
require_relative "./news_reader_cli/api_key_input_validate"
|
8
9
|
require_relative "./news_reader_cli/api_key_validate"
|
9
10
|
|
10
11
|
# Bundler.require(*Rails.groups)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: news_reader_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henry
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -101,6 +101,7 @@ files:
|
|
101
101
|
- bin/news_reader_cli
|
102
102
|
- bin/setup
|
103
103
|
- lib/news_reader_cli.rb
|
104
|
+
- lib/news_reader_cli/api_key_input_validate.rb
|
104
105
|
- lib/news_reader_cli/api_key_validate.rb
|
105
106
|
- lib/news_reader_cli/api_service.rb
|
106
107
|
- lib/news_reader_cli/article.rb
|