Skip to content

Commit d7be401

Browse files
Hasnepmaleadt
andauthored
Add function to get and set a repo's topics (#201)
Co-authored-by: Tim Besard <tim.besard@gmail.com>
1 parent 9cac3b9 commit d7be401

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ GitHub.jl implements a bunch of methods that make REST requests to GitHub's API.
106106
| `remove_collaborator(repo, user)` | `HTTP.Response` | [remove `user` as a collaborator from `repo`](https://developer.github.com/v3/repos/collaborators/#remove-collaborator) |
107107
| `collaborator_permission(repo, user)` | `HTTP.Response` | [get the `repo` permission of a collaborator](https://developer.github.com/v3/repos/collaborators/#get-repository-permissions-for-a-user) |
108108
| `stats(repo, stat[, attempts = 3])` | `HTTP.Response` | [get information on `stat` (e.g. "contributors", "code_frequency", "commit_activity", etc.)](https://developer.github.com/v3/repos/statistics/) |
109+
| `topics(repo)` | `Vector{String}` | [get the list of topics of a repository.)](https://docs.github.com/en/rest/repos/repos#get-all-repository-topics) |
110+
| `set_topics(repo, topics)` | `Vector{String}` | [set the list of topics of a repository.)](https://docs.github.com/en/rest/repos/repos#replace-all-repository-topics) |
109111
| `commit(repo, sha)` | `Commit` | [get the commit specified by `sha`](https://developer.github.com/v3/repos/commits/#get-a-single-commit) |
110112
| `commits(repo)` | `Tuple{Vector{Commit}, Dict}` | [get `repo`'s commits](https://developer.github.com/v3/repos/commits/#list-commits-on-a-repository) |
111113
| `branch(repo, branch)` | `Branch` | [get the branch specified by `branch`](https://developer.github.com/v3/repos/#get-branch) |

src/GitHub.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ export # repositories.jl
126126
add_collaborator,
127127
remove_collaborator,
128128
collaborator_permission,
129-
stats
129+
stats,
130+
topics,
131+
set_topics
130132

131133
export # contents.jl
132134
Content,

src/repositories/repositories.jl

+14
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,17 @@ end
130130
end
131131
return r
132132
end
133+
134+
# topics #
135+
#--------#
136+
137+
@api_default function topics(api::GitHubAPI, repo; options...)
138+
results, page_data = gh_get_paged_json(api, "/repos/$(name(repo))/topics"; options...)
139+
return convert(Vector{String}, results["names"]), page_data
140+
end
141+
142+
@api_default function set_topics(api::GitHubAPI, repo, topics; options...)
143+
result = gh_put_json(api, "/repos/$(name(repo))/topics";
144+
params=Dict("names" => topics), options...)
145+
return convert(Vector{String}, result["names"])
146+
end

test/read_only_api_tests.jl

+11
Original file line numberDiff line numberDiff line change
@@ -253,3 +253,14 @@ end
253253
@test repo_license_obj.path == "LICENSE.md"
254254
@test repo_license_obj.typ == "file"
255255
end
256+
257+
@testset "Topics" begin
258+
# test GitHub.topics
259+
topics_obj, page_data = topics(ghjl; auth = auth)
260+
@test typeof(topics_obj) == Vector{String}
261+
@test length(topics_obj) == 0
262+
263+
# also test on a repository that _does_ have topics
264+
topics_obj, page_data = topics("JuliaLang/julia"; auth = auth)
265+
@test length(topics_obj) > 0
266+
end

0 commit comments

Comments
 (0)