refactor: extract subscripts in functions
This commit is contained in:
parent
65bba68feb
commit
c43a64033b
2
.env
Normal file
2
.env
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
API_KEY=""
|
||||||
|
ENDPOINT="https://projets.cohabit.fr/redmine"
|
|
@ -1,47 +1,37 @@
|
||||||
import * as CSV from 'std:csv';
|
|
||||||
import { Redmine } from 'bluemine';
|
import { Redmine } from 'bluemine';
|
||||||
|
|
||||||
const endpoint = 'https://projets.cohabit.fr/redmine';
|
|
||||||
const apiKey = '';
|
|
||||||
const redmine = new Redmine({ endpoint, apiKey });
|
|
||||||
|
|
||||||
type CsvEntry = {
|
type CsvEntry = {
|
||||||
firstname: string;
|
firstname: string;
|
||||||
lastname: string;
|
lastname: string;
|
||||||
mail: string;
|
mail: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
const file = await Deno.readTextFile(
|
async function createUsers(redmine: Redmine, csv: CsvEntry[]) {
|
||||||
'C:/Users/Julien/Documents/Stage/FabLab/entrepreneur_full.csv',
|
const userIds: number[] = [];
|
||||||
);
|
|
||||||
const csv = CSV.parse(file.replaceAll(';', ','), {
|
function capitalize(str: string): string {
|
||||||
skipFirstRow: true,
|
const [first, ...tail] = str.split('');
|
||||||
}) as CsvEntry[];
|
return `${first.toLocaleUpperCase()}${tail.join('').toLocaleLowerCase()}`;
|
||||||
|
}
|
||||||
const userIds: number[] = [];
|
|
||||||
|
for (const { firstname, lastname, mail } of csv) {
|
||||||
function capitalize(str: string): string {
|
const login = `${firstname.toLowerCase()}.${lastname.toLowerCase()}`;
|
||||||
const [first, ...tail] = str.split('');
|
|
||||||
return `${first.toLocaleUpperCase()}${tail.join('').toLocaleLowerCase()}`;
|
try {
|
||||||
|
const { user } = await redmine.users.create({
|
||||||
|
firstname: capitalize(firstname),
|
||||||
|
lastname: capitalize(lastname),
|
||||||
|
mail: mail,
|
||||||
|
login,
|
||||||
|
sendCreationMail: true,
|
||||||
|
generatePassword: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
userIds.push(user.id);
|
||||||
|
} catch {
|
||||||
|
console.error(login);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
await redmine.unstableGroups.create({ name: 'entrepreneur-01-24', userIds });
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const { firstname, lastname, mail } of csv) {
|
|
||||||
const login = `${firstname.toLowerCase()}.${lastname.toLowerCase()}`;
|
|
||||||
|
|
||||||
try {
|
|
||||||
const { user } = await redmine.users.create({
|
|
||||||
firstname: capitalize(firstname),
|
|
||||||
lastname: capitalize(lastname),
|
|
||||||
mail: mail,
|
|
||||||
login,
|
|
||||||
sendCreationMail: true,
|
|
||||||
generatePassword: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
userIds.push(user.id);
|
|
||||||
} catch {
|
|
||||||
console.error(login);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
await redmine.unstableGroups.create({ name: 'entrepreneur-01-24', userIds });
|
|
||||||
|
|
|
@ -1,50 +1,40 @@
|
||||||
import * as CSV from 'std:csv';
|
|
||||||
import { Redmine } from 'bluemine';
|
import { Redmine } from 'bluemine';
|
||||||
|
|
||||||
const endpoint = 'https://projets.cohabit.fr/redmine';
|
|
||||||
const apiKey = '';
|
|
||||||
const redmine = new Redmine({ endpoint, apiKey });
|
|
||||||
|
|
||||||
type CsvEntry = {
|
type CsvEntry = {
|
||||||
firstname: string;
|
firstname: string;
|
||||||
lastname: string;
|
lastname: string;
|
||||||
mail: string;
|
mail: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
const file = await Deno.readTextFile(
|
async function addUsersToGroup(redmine: Redmine, csv: CsvEntry[]) {
|
||||||
'C:/Users/Julien/Documents/Stage/FabLab/entrepreneur_full.csv',
|
const users: { id: number; login: string }[] = [];
|
||||||
);
|
|
||||||
const csv = CSV.parse(file.replaceAll(';', ','), {
|
for (const { firstname, lastname } of csv) {
|
||||||
skipFirstRow: true,
|
const login = `${firstname.toLowerCase()}.${lastname.toLowerCase()}`;
|
||||||
}) as CsvEntry[];
|
|
||||||
|
try {
|
||||||
const users: { id: number; login: string }[] = [];
|
const list = await redmine.users.list({ limit: 1, name: login });
|
||||||
|
const user = list.users[0];
|
||||||
for (const { firstname, lastname } of csv) {
|
|
||||||
const login = `${firstname.toLowerCase()}.${lastname.toLowerCase()}`;
|
console.log(`get user: ${user.login}#${user.id}`);
|
||||||
|
users.push(user);
|
||||||
try {
|
} catch {
|
||||||
const list = await redmine.users.list({ limit: 1, name: login });
|
console.error(`error list: ${login}`);
|
||||||
const user = list.users[0];
|
}
|
||||||
|
}
|
||||||
console.log(`get user: ${user.login}#${user.id}`);
|
|
||||||
users.push(user);
|
const { groups } = await redmine.unstableGroups.list() as unknown as {
|
||||||
} catch {
|
groups: { id: number; name: string }[];
|
||||||
console.error(`error list: ${login}`);
|
};
|
||||||
}
|
|
||||||
}
|
const { id } = groups.filter(({ name }) => name === 'entrepreneur-01-24')[0];
|
||||||
|
|
||||||
const { groups } = await redmine.unstableGroups.list() as unknown as {
|
for (const user of users) {
|
||||||
groups: { id: number; name: string }[];
|
try {
|
||||||
};
|
console.error(`ok: ${user.login}#${user.id}`);
|
||||||
|
await redmine.unstableGroups.addUser(id, user);
|
||||||
const { id } = groups.filter(({ name }) => name === 'entrepreneur-01-24')[0];
|
} catch {
|
||||||
|
console.error(`error: ${user.login}`);
|
||||||
for (const user of users) {
|
}
|
||||||
try {
|
}
|
||||||
console.error(`ok: ${user.login}#${user.id}`);
|
|
||||||
await redmine.unstableGroups.addUser(id, user);
|
|
||||||
} catch {
|
|
||||||
console.error(`error: ${user.login}`);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
19
mod.ts
Normal file
19
mod.ts
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import { Redmine } from 'bluemine';
|
||||||
|
import * as CSV from 'std:csv';
|
||||||
|
|
||||||
|
if (import.meta.main) {
|
||||||
|
const endpoint = Deno.env.get('ENDPOINT')
|
||||||
|
const apiKey = Deno.env.get('API_KEY')
|
||||||
|
|
||||||
|
if (apiKey === undefined) throw new Error('Redmine REST API key is missing, please define API_KEY')
|
||||||
|
if (endpoint === undefined) throw new Error('Redmine REST endpoint is missing, please define ENDPOINT')
|
||||||
|
|
||||||
|
const redmine = new Redmine({ endpoint, apiKey });
|
||||||
|
|
||||||
|
const file = await Deno.readTextFile(
|
||||||
|
'path',
|
||||||
|
);
|
||||||
|
const csv = CSV.parse(file.replaceAll(';', ','), {
|
||||||
|
skipFirstRow: true,
|
||||||
|
}) as CsvEntry[];
|
||||||
|
}
|
Loading…
Reference in a new issue