Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Пискунов Андрей Дмитриевич
Create Students Repos
Commits
8ad3c1db
Commit
8ad3c1db
authored
2 months ago
by
Пискунов Андрей Дмитриевич
Browse files
Options
Download
Patches
Plain Diff
Fix find project by group
parent
28e15d36
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.env.example
+1
-1
.env.example
README.md
+19
-7
README.md
src/index.js
+12
-4
src/index.js
with
32 additions
and
12 deletions
+32
-12
.env.example
+
1
−
1
View file @
8ad3c1db
GITLAB_TOKEN=
GITLAB_HOST=
TIMEOUT=
\ No newline at end of file
GROUP_NAME=gitlab-group-name
This diff is collapsed.
Click to expand it.
README.md
+
19
−
7
View file @
8ad3c1db
# Скрипт для создания репозиториев gitlab для студентов
## How to run
1.
`git clone https://git.miem.hse.ru/biv23x-ps/create-students-repos.git`
1.
`cp .env.example .env`
1.
fill .env
1.
`npm i`
1.
`mkdir logs`
1.
`sh run.sh `
\ No newline at end of file
## Как запустить
1.
Создать группу в Gitlab ручками
1.
Получить Personal Access Token в Gitlab. Лучше выдать все scoups
Вот
[
ссылка
](
https://git.miem.hse.ru/-/profile/personal_access_tokens
)
для МИЭМовского Gitlab-а
1.
Заполнить
`.env `
файл
```
GITLAB_TOKEN=<ваш сгенерированный Gitlab token>
GITLAB_HOST=<ссылка на ваш Gitlab>
GROUP_NAME=<имя созданной вами группы>
TIMEOUT=<раз во сколько милисекунд скрипт будет искать новосозданных студентов>
```
Пример заполнения .env для МИЭМовского Gitlab
```
GITLAB_TOKEN=knmknDqqwdQuj
GITLAB_HOST=https://git.miem.hse.ru
GROUP_NAME=biv23x-ps
TIMEOUT=120000
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/index.js
+
12
−
4
View file @
8ad3c1db
...
...
@@ -29,8 +29,8 @@ function readStudentsFile() {
});
}
async
function
getProject
(
slug
)
{
const
[
project
]
=
await
api
.
Projects
.
search
(
slug
);
async
function
getProject
(
slug
,
groupId
)
{
const
[
project
]
=
await
api
.
Projects
.
search
(
slug
,
{
namespace_id
:
groupId
}
);
return
project
;
}
...
...
@@ -62,11 +62,17 @@ async function addUserToProject(userId, projectId) {
async
function
main
()
{
console
.
info
(
`Start sync
${
new
Date
().
toISOString
()}
`
);
const
group
=
await
api
.
Groups
.
show
(
config
.
groupName
);
if
(
!
group
)
{
console
.
error
(
`Group
${
config
.
groupName
}
in
${
config
.
gitlabHost
}
not found. Create it before running this service.`
);
return
;
}
const
students
=
readStudentsFile
();
for
(
const
student
of
students
)
{
try
{
const
project
=
await
getProject
(
student
.
slug
)
||
await
addProjectToGroup
(
student
.
name
,
student
.
slug
);
const
project
=
await
getProject
(
student
.
slug
,
group
.
id
)
||
await
addProjectToGroup
(
student
.
name
,
student
.
slug
);
const
user
=
await
getUserBySlug
(
student
.
slug
);
if
(
!
user
)
{
...
...
@@ -85,6 +91,8 @@ async function main() {
console
.
log
(
"
Start program
"
);
main
().
catch
(
err
=>
console
.
error
(
err
));
setInterval
(()
=>
{
main
().
catch
(
err
=>
console
.
error
(
err
));
},
config
.
timeout
);
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets