Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coursebox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tuhe
coursebox
Commits
a0d2bc35
Commit
a0d2bc35
authored
1 year ago
by
tuhe
Browse files
Options
Downloads
Patches
Plain Diff
Started work on git auto admin stuff
parent
56a7d560
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/coursebox.egg-info/PKG-INFO
+1
-1
1 addition, 1 deletion
src/coursebox.egg-info/PKG-INFO
src/coursebox/__init__.py
+2
-0
2 additions, 0 deletions
src/coursebox/__init__.py
src/coursebox/admin/gitlab.py
+56
-0
56 additions, 0 deletions
src/coursebox/admin/gitlab.py
with
59 additions
and
1 deletion
src/coursebox.egg-info/PKG-INFO
+
1
−
1
View file @
a0d2bc35
Metadata-Version: 2.1
Name: coursebox
Version: 0.1.18.
9
Version: 0.1.18.
10
Summary: A course management system currently used at DTU
Home-page: https://lab.compute.dtu.dk/tuhe/coursebox
Author: Tue Herlau
...
...
This diff is collapsed.
Click to expand it.
src/coursebox/__init__.py
+
2
−
0
View file @
a0d2bc35
...
...
@@ -5,4 +5,6 @@
from
coursebox.setup_coursebox
import
setup_coursebox
from
coursebox.core.info_paths
import
get_paths
from
coursebox.core.info
import
class_information
from
coursebox.admin.gitlab
import
sync_tas_with_git
# from coursebox.core import info_paths
This diff is collapsed.
Click to expand it.
src/coursebox/admin/gitlab.py
0 → 100644
+
56
−
0
View file @
a0d2bc35
import
gitlab
import
gitlab.const
from
urllib.parse
import
urlparse
domain
=
urlparse
(
'
http://www.example.test/foo/bar
'
).
netloc
print
(
domain
)
# --> www.example.test
def
sync_tas_with_git
():
from
coursebox
import
class_information
# Put this here so information is synced.
info
=
class_information
()
url
=
info
[
'
project_correction_url
'
]
domain
=
urlparse
(
url
).
netloc
# curl --header "PRIVATE-TOKEN: glpat--NYfBQfTS9JW2G7uPmM2" "https://gitlab.example.com/api/v4/projects/cp%2F02002instructors/members/all"
gl
=
gitlab
.
Gitlab
(
url
=
"
https://
"
+
domain
,
private_token
=
info
[
'
instructor_gitlab_token
'
].
strip
())
a
=
234
prs
=
[]
name
=
url
.
split
(
domain
)[
-
1
][
1
:]
p
=
gl
.
projects
.
get
(
name
)
users
=
p
.
users
.
list
()
all_tas
=
[
u
.
name
for
u
in
users
]
for
i
in
info
[
'
instructors
'
]:
if
i
[
'
name
'
]
not
in
all_tas
:
print
(
i
)
for
i
in
p
.
invitations
.
list
():
print
(
"
Invited
"
,
i
.
invite_email
.
split
(
"
@
"
))
if
False
:
inv
=
p
.
invitations
.
create
({
"
email
"
:
"
fmry@dtu.dk
"
,
"
access_level
"
:
gitlab
.
const
.
AccessLevel
.
MAINTAINER
,
})
inv
.
save
()
#
#
#
#
# for p in gl.projects.list(iterator=True):
# prs.append(p)
# for p in prs:
# # print(p.name)
# if "02002" in p.name:
# print(p.name, p.id)
#
# p = gl.projects.get(1644)
# users = p.users.list(get_all=True)
# for u in users:
# print(u)
# p.invitations.get("tuh@dtu.dk")
# gl.users.list()[1].username
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment