feat: export function to mod

This commit is contained in:
Julien Oculi 2024-01-15 22:54:55 +01:00
parent a58fda6419
commit 4c9cf502d0
2 changed files with 7 additions and 2 deletions

7
mod.ts
View file

@ -1,6 +1,8 @@
import { Redmine } from 'bluemine'
import * as CSV from 'std:csv'
import { CsvEntry } from './type.ts'
import { createUsers } from './src/create_users.ts'
import { appendToGroup } from './src/append_to_group.ts'
if (import.meta.main) {
const endpoint = Deno.env.get('ENDPOINT')
@ -20,10 +22,13 @@ if (import.meta.main) {
const redmine = new Redmine({ endpoint, apiKey })
const file = await Deno.readTextFile(
prompt('Full path of the CSV file ?:') ?? '',
prompt('Full path of the CSV file ?: ') ?? '',
)
const csv = CSV.parse(file.replaceAll(';', ','), {
skipFirstRow: true,
}) as CsvEntry[]
createUsers(redmine, csv)
appendToGroup(redmine, csv, prompt('Enter a group name ?: ') ?? '')
}

View file

@ -2,7 +2,7 @@ import { Redmine } from 'bluemine'
import { CsvEntry } from '../type.ts'
import { capitalize, log, sanitize, toLogin } from '../utils.ts'
async function createUsers(
export async function createUsers(
redmine: Redmine,
csv: CsvEntry[],
) {