teafyi 0.1.0
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 +7 -0
- data/lib/teafyi.rb +152 -0
- metadata +46 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 905101443ab42f149d002ea5aae4e598b6bfc6200d27cc4b285a880dedb5a433
|
|
4
|
+
data.tar.gz: 601a00b84d7dab4f4cff302ea701e32bc5be4188fc4412fb4d3d9a05a1513d83
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 8df8c87c5c68c0534ab9c4bb89a9dad10ef6f51a71098858955d16e535f5c361e0123ad1f9b1c94d4dbf9671b467a7d497ad073b7de18c7219fe051900c3886f
|
|
7
|
+
data.tar.gz: 4b0dbe4edd9cc4e063197d278627035bde519af0b6a90d2783b91becb475157556a25be5341fc2f978da75bc2b066e2893ddea46dba036056d42c9a41b58d331
|
data/lib/teafyi.rb
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "net/http"
|
|
4
|
+
require "json"
|
|
5
|
+
require "uri"
|
|
6
|
+
|
|
7
|
+
# Ruby client for TeaFYI REST API (teafyi.com).
|
|
8
|
+
#
|
|
9
|
+
# client = TeaFYI::Client.new
|
|
10
|
+
# result = client.search("query")
|
|
11
|
+
#
|
|
12
|
+
module TeaFYI
|
|
13
|
+
class Client
|
|
14
|
+
BASE_URL = "https://teafyi.com"
|
|
15
|
+
|
|
16
|
+
def initialize(base_url: BASE_URL)
|
|
17
|
+
@base_url = base_url
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def search(query)
|
|
21
|
+
get("/api/v1/search/", q: query)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
# List all benefits.
|
|
25
|
+
def list_benefits
|
|
26
|
+
get("/api/v1/benefits/")
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# Get benefit by slug.
|
|
30
|
+
def get_benefit(slug)
|
|
31
|
+
get("/api/v1/benefits/#{slug}/")
|
|
32
|
+
end
|
|
33
|
+
# List all brewing.
|
|
34
|
+
def list_brewing
|
|
35
|
+
get("/api/v1/brewing/")
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# Get brewing by slug.
|
|
39
|
+
def get_brewing(slug)
|
|
40
|
+
get("/api/v1/brewing/#{slug}/")
|
|
41
|
+
end
|
|
42
|
+
# List all categories.
|
|
43
|
+
def list_categories
|
|
44
|
+
get("/api/v1/categories/")
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# Get category by slug.
|
|
48
|
+
def get_category(slug)
|
|
49
|
+
get("/api/v1/categories/#{slug}/")
|
|
50
|
+
end
|
|
51
|
+
# List all compounds.
|
|
52
|
+
def list_compounds
|
|
53
|
+
get("/api/v1/compounds/")
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Get compound by slug.
|
|
57
|
+
def get_compound(slug)
|
|
58
|
+
get("/api/v1/compounds/#{slug}/")
|
|
59
|
+
end
|
|
60
|
+
# List all countries.
|
|
61
|
+
def list_countries
|
|
62
|
+
get("/api/v1/countries/")
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# Get country by slug.
|
|
66
|
+
def get_country(slug)
|
|
67
|
+
get("/api/v1/countries/#{slug}/")
|
|
68
|
+
end
|
|
69
|
+
# List all faqs.
|
|
70
|
+
def list_faqs
|
|
71
|
+
get("/api/v1/faqs/")
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
# Get faq by slug.
|
|
75
|
+
def get_faq(slug)
|
|
76
|
+
get("/api/v1/faqs/#{slug}/")
|
|
77
|
+
end
|
|
78
|
+
# List all glossary.
|
|
79
|
+
def list_glossary
|
|
80
|
+
get("/api/v1/glossary/")
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# Get term by slug.
|
|
84
|
+
def get_term(slug)
|
|
85
|
+
get("/api/v1/glossary/#{slug}/")
|
|
86
|
+
end
|
|
87
|
+
# List all guides.
|
|
88
|
+
def list_guides
|
|
89
|
+
get("/api/v1/guides/")
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# Get guide by slug.
|
|
93
|
+
def get_guide(slug)
|
|
94
|
+
get("/api/v1/guides/#{slug}/")
|
|
95
|
+
end
|
|
96
|
+
# List all processing.
|
|
97
|
+
def list_processing
|
|
98
|
+
get("/api/v1/processing/")
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Get processing by slug.
|
|
102
|
+
def get_processing(slug)
|
|
103
|
+
get("/api/v1/processing/#{slug}/")
|
|
104
|
+
end
|
|
105
|
+
# List all regions.
|
|
106
|
+
def list_regions
|
|
107
|
+
get("/api/v1/regions/")
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# Get region by slug.
|
|
111
|
+
def get_region(slug)
|
|
112
|
+
get("/api/v1/regions/#{slug}/")
|
|
113
|
+
end
|
|
114
|
+
# List all teaware.
|
|
115
|
+
def list_teaware
|
|
116
|
+
get("/api/v1/teaware/")
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
# Get teaware by slug.
|
|
120
|
+
def get_teaware(slug)
|
|
121
|
+
get("/api/v1/teaware/#{slug}/")
|
|
122
|
+
end
|
|
123
|
+
# List all tools.
|
|
124
|
+
def list_tools
|
|
125
|
+
get("/api/v1/tools/")
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
# Get tool by slug.
|
|
129
|
+
def get_tool(slug)
|
|
130
|
+
get("/api/v1/tools/#{slug}/")
|
|
131
|
+
end
|
|
132
|
+
# List all varieties.
|
|
133
|
+
def list_varieties
|
|
134
|
+
get("/api/v1/varieties/")
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
# Get variety by slug.
|
|
138
|
+
def get_variety(slug)
|
|
139
|
+
get("/api/v1/varieties/#{slug}/")
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
private
|
|
143
|
+
|
|
144
|
+
def get(path, **params)
|
|
145
|
+
uri = URI.join(@base_url, path)
|
|
146
|
+
uri.query = URI.encode_www_form(params) unless params.empty?
|
|
147
|
+
response = Net::HTTP.get_response(uri)
|
|
148
|
+
raise "HTTP #{response.code}" unless response.is_a?(Net::HTTPSuccess)
|
|
149
|
+
JSON.parse(response.body)
|
|
150
|
+
end
|
|
151
|
+
end
|
|
152
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: teafyi
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- FYIPedia
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-03-21 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Ruby client for the TeaFYI REST API at teafyi.com. Zero external dependencies.
|
|
14
|
+
email: dev@fyipedia.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/teafyi.rb
|
|
20
|
+
homepage: https://teafyi.com
|
|
21
|
+
licenses:
|
|
22
|
+
- MIT
|
|
23
|
+
metadata:
|
|
24
|
+
source_code_uri: https://github.com/fyipedia/teafyi-rb
|
|
25
|
+
documentation_uri: https://teafyi.com/api/v1/schema/
|
|
26
|
+
homepage_uri: https://teafyi.com
|
|
27
|
+
post_install_message:
|
|
28
|
+
rdoc_options: []
|
|
29
|
+
require_paths:
|
|
30
|
+
- lib
|
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '3.0'
|
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
requirements: []
|
|
42
|
+
rubygems_version: 3.0.3.1
|
|
43
|
+
signing_key:
|
|
44
|
+
specification_version: 4
|
|
45
|
+
summary: Ruby client for TeaFYI API
|
|
46
|
+
test_files: []
|