feat: export function to mod
This commit is contained in:
parent
a58fda6419
commit
4c9cf502d0
7
mod.ts
7
mod.ts
|
@ -1,6 +1,8 @@
|
||||||
import { Redmine } from 'bluemine'
|
import { Redmine } from 'bluemine'
|
||||||
import * as CSV from 'std:csv'
|
import * as CSV from 'std:csv'
|
||||||
import { CsvEntry } from './type.ts'
|
import { CsvEntry } from './type.ts'
|
||||||
|
import { createUsers } from './src/create_users.ts'
|
||||||
|
import { appendToGroup } from './src/append_to_group.ts'
|
||||||
|
|
||||||
if (import.meta.main) {
|
if (import.meta.main) {
|
||||||
const endpoint = Deno.env.get('ENDPOINT')
|
const endpoint = Deno.env.get('ENDPOINT')
|
||||||
|
@ -20,10 +22,13 @@ if (import.meta.main) {
|
||||||
const redmine = new Redmine({ endpoint, apiKey })
|
const redmine = new Redmine({ endpoint, apiKey })
|
||||||
|
|
||||||
const file = await Deno.readTextFile(
|
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(';', ','), {
|
const csv = CSV.parse(file.replaceAll(';', ','), {
|
||||||
skipFirstRow: true,
|
skipFirstRow: true,
|
||||||
}) as CsvEntry[]
|
}) as CsvEntry[]
|
||||||
|
|
||||||
|
createUsers(redmine, csv)
|
||||||
|
appendToGroup(redmine, csv, prompt('Enter a group name ?: ') ?? '')
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { Redmine } from 'bluemine'
|
||||||
import { CsvEntry } from '../type.ts'
|
import { CsvEntry } from '../type.ts'
|
||||||
import { capitalize, log, sanitize, toLogin } from '../utils.ts'
|
import { capitalize, log, sanitize, toLogin } from '../utils.ts'
|
||||||
|
|
||||||
async function createUsers(
|
export async function createUsers(
|
||||||
redmine: Redmine,
|
redmine: Redmine,
|
||||||
csv: CsvEntry[],
|
csv: CsvEntry[],
|
||||||
) {
|
) {
|
||||||
|
|
Loading…
Reference in a new issue