Skip to content

Commit ec83ea9

Browse files
authored
Simplify usage of Content/Blob's base64-encoded data. (#209)
1 parent 20672eb commit ec83ea9

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

src/git/blob.jl

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
################
2+
# Blob Type #
3+
################
4+
15
@ghdef mutable struct Blob
26
content::Union{String, Nothing}
37
encoding::Union{String, Nothing}
@@ -10,6 +14,15 @@ Blob(sha::AbstractString) = Blob(Dict("sha" => sha))
1014

1115
namefield(blob::Blob) = blob.sha
1216

17+
function Base.String(blob::Blob)
18+
@assert blob.encoding == "base64"
19+
String(base64decode(blob.content))
20+
end
21+
22+
###############
23+
# API Methods #
24+
###############
25+
1326
@api_default function blob(api::GitHubAPI, repo, blob_obj; options...)
1427
result = gh_get_json(api, "/repos/$(name(repo))/git/blobs/$(name(blob_obj))"; options...)
1528
return Blob(result)

src/repositories/contents.jl

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ Content(path::AbstractString) = Content(Dict("path" => path))
2323

2424
namefield(content::Content) = content.path
2525

26+
function Base.String(content::Content)
27+
@assert content.encoding == "base64"
28+
String(base64decode(content.content))
29+
end
30+
2631
###############
2732
# API Methods #
2833
###############

test/read_only_api_tests.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ end
9191
@test readme_permalink == "https://github.com/JuliaWeb/GitHub.jl/blob/$(test_sha)/README.md"
9292
@test owners_permalink == "https://github.com/JuliaWeb/GitHub.jl/tree/$(test_sha)/src/owners"
9393
@test readme_file == readme(ghjl; auth = auth)
94+
@test occursin("GitHub.jl", String(readme_file))
9495
@test hasghobj("src/GitHub.jl", src_dir)
9596

9697
# test GitHub.status, GitHub.statuses
@@ -225,7 +226,7 @@ end
225226
@test entry["type"] == "blob"
226227

227228
b = blob(github_jl, entry["sha"]; auth=auth)
228-
@test occursin("GitHub.jl", String(base64decode(replace(b.content,"\n" => ""))))
229+
@test occursin("GitHub.jl", String(b))
229230

230231
break
231232
end

0 commit comments

Comments
 (0)