~edwargix/git.sr.ht

e99eddb3c0ad865607be0ce0cc96c462d7d4d15f — Drew DeVault 2 years ago 3ba4419
API: Update go.mod, style fixes
3 files changed, 22 insertions(+), 8 deletions(-)

M api/go.mod
M api/go.sum
M gitsrht/repos.py
M api/go.mod => api/go.mod +1 -1
@@ 3,7 3,7 @@ module git.sr.ht/~sircmpwn/git.sr.ht/api
go 1.14

require (
	git.sr.ht/~sircmpwn/core-go v0.0.0-20220126083025-75dfa2992b49
	git.sr.ht/~sircmpwn/core-go v0.0.0-20220203103213-b2c8e81ee698
	github.com/99designs/gqlgen v0.14.0
	github.com/Masterminds/squirrel v1.4.0
	github.com/go-git/go-git/v5 v5.0.0

M api/go.sum => api/go.sum +2 -2
@@ 31,8 31,8 @@ cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohl
cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs=
cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
git.sr.ht/~sircmpwn/core-go v0.0.0-20220126083025-75dfa2992b49 h1:+18ujTlMyXa6Zp1qXz7M4ha2eT8MuItSbeQd9w2LQ7I=
git.sr.ht/~sircmpwn/core-go v0.0.0-20220126083025-75dfa2992b49/go.mod h1:uUqzeO5OLl/nRZfPk0igIAweRZiVwUmu/OGYfjS9fWc=
git.sr.ht/~sircmpwn/core-go v0.0.0-20220203103213-b2c8e81ee698 h1:9BQtk5JzEvEuK8owkf/96S53b6bna/o7OXv/Do7lIb0=
git.sr.ht/~sircmpwn/core-go v0.0.0-20220203103213-b2c8e81ee698/go.mod h1:uUqzeO5OLl/nRZfPk0igIAweRZiVwUmu/OGYfjS9fWc=
git.sr.ht/~sircmpwn/dowork v0.0.0-20210820133136-d3970e97def3 h1:9WCv5cK67s2SiY/R4DWT/OchEsFnfYDz3lbevKxZ4QI=
git.sr.ht/~sircmpwn/dowork v0.0.0-20210820133136-d3970e97def3/go.mod h1:8neHEO3503w/rNtttnR0JFpQgM/GFhaafVwvkPsFIDw=
git.sr.ht/~sircmpwn/getopt v0.0.0-20191230200459-23622cc906b3 h1:4wDp4BKF7NQqoh73VXpZsB/t1OEhDpz/zEpmdQfbjDk=

M gitsrht/repos.py => gitsrht/repos.py +19 -5
@@ 92,8 92,14 @@ class GitRepoApi():
            return None

        resp = exec_gql("git.sr.ht", """
            mutation CreateRepository($name: String!, $visibility: Visibility = PUBLIC, $description: String) {
                createRepository(name: $name, visibility: $visibility, description: $description) {
            mutation CreateRepository(
                    $name: String!,
                    $visibility: Visibility = PUBLIC,
                    $description: String) {
                createRepository(
                        name: $name,
                        visibility: $visibility,
                        description: $description) {
                    id
                    created
                    updated


@@ 108,7 114,8 @@ class GitRepoApi():
                    visibility
                }
            }
        """, valid=valid, user=user, name=repo_name, description=description, visibility=visibility)
        """, valid=valid, user=user, name=repo_name,
            description=description, visibility=visibility)

        if not valid.ok:
            return None


@@ 123,8 130,15 @@ class GitRepoApi():
            return None

        resp = exec_gql("git.sr.ht", """
            mutation CreateRepository($name: String!, $visibility: Visibility = UNLISTED, $description: String, $cloneUrl: String) {
                createRepository(name: $name, visibility: $visibility, description: $description, cloneUrl: $cloneUrl) {
            mutation CreateRepository(
                    $name: String!,
                    $visibility: Visibility = UNLISTED,
                    $description: String,
                    $cloneUrl: String) {
                createRepository(name: $name,
                        visibility: $visibility,
                        description: $description,
                        cloneUrl: $cloneUrl) {
                    name
                }
            }