Move cli commands in core module to use node ace

This commit is contained in:
2021-10-26 18:06:47 +02:00
parent 4b0d195bba
commit 034010e4ed
6 changed files with 354 additions and 1 deletions

45
commands/Create.ts Normal file
View File

@@ -0,0 +1,45 @@
import {args, BaseCommand, flags} from '@adonisjs/core/build/standalone'
import {DateTime} from "luxon";
import Link from "App/Models/Link";
import User from "App/Models/User";
import Env from "@ioc:Adonis/Core/Env";
export default class Create extends BaseCommand {
public static commandName = 'link:create'
public static description = 'Quickly and easily create a new link'
public static aliases = ['new']
public static settings = {
loadApp: true,
stayAlive: false,
}
@args.string({ description: 'Code of the new link' })
public code: string
@args.string({ description: 'Target of the new link' })
public target: string
@flags.string({ alias: 'd', description: 'Date of the new link (Format: yyyy-MM-dd/HH:mm:ss)' })
public date: string
public async run () {
const exist = await Link.findBy('code', this.code)
if (exist) {
this.logger.warning(`The link with code '${this.code}' already exists!`)
return
}
await Link.create({
code: this.code,
target: this.target,
type: this.date ? 'TEMPORARY' : 'PERMANENT',
expire: DateTime.fromJSDate(new Date(this.date || new Date())) ?? null,
authorId: (await User.findByOrFail('email', Env.get('ADMIN_USER'))).id
})
this.logger.info(`The link '${this.colors.yellow(this.code)}' was successfully created!`)
}
}

30
commands/Delete.ts Normal file
View File

@@ -0,0 +1,30 @@
import {args, BaseCommand} from '@adonisjs/core/build/standalone'
import Link from "App/Models/Link";
export default class Delete extends BaseCommand {
public static commandName = 'link:delete'
public static description = 'Delete an existing link'
public static aliases = ['del', 'remove', 'rem']
public static settings = {
loadApp: true,
stayAlive: false,
}
@args.string({ description: 'Code of the new link' })
public code: string
public async run () {
const link = await Link.findBy('code', this.code)
if (!link) {
this.logger.warning(`The link with code '${this.code}' does not exist!`)
return
}
await link.related('author').dissociate()
await link.delete()
this.logger.info(`The link '${this.colors.yellow(link.code)}' was successfully deleted!`)
}
}

40
commands/List.ts Normal file
View File

@@ -0,0 +1,40 @@
import { BaseCommand } from '@adonisjs/core/build/standalone'
import Link from "App/Models/Link";
export default class List extends BaseCommand {
public static commandName = 'link:list'
public static description = 'List all your links'
public static aliases = ['link:ls']
public static settings = {
loadApp: true,
stayAlive: false,
}
public async run () {
const table = this.ui.table()
table.head(['Id', 'Code', 'Target', 'Clicks count', 'Author', 'Type', 'Expire'])
const links = await Link
.query()
.preload('clicks')
.preload('author')
.orderBy('id', 'asc')
links.forEach((link) => {
table.row([
`${link.id}`,
link.code,
link.target,
link.clicks.length > 0 ? this.colors.yellow(String(link.clicks.length)) : this.colors.grey('0'),
link.author.email,
link.type,
link.type === 'TEMPORARY' ? link.expire!.toSQL() : this.colors.grey('Never')
])
})
table.render()
}
}

41
commands/Logs.ts Normal file
View File

@@ -0,0 +1,41 @@
import {args, BaseCommand} from '@adonisjs/core/build/standalone'
import Link from "App/Models/Link";
export default class Logs extends BaseCommand {
public static commandName = 'link:logs'
public static description = 'Retrieves the number of visits of a link'
public static aliases = ['link:stats', 'link:show']
public static settings = {
loadApp: true,
stayAlive: false,
}
@args.string({ description: 'Code of the new link' })
public code: string
public async run () {
const link = await Link.findBy('code', this.code)
if (!link) {
this.logger.warning(`The link with code '${this.code}' does not exist!`)
return
}
await link.load('clicks')
const table = this.ui.table()
table.head(['Id', 'IP', 'Country', 'Date'])
link.clicks.forEach((click) => {
table.row([
`${click.id}`,
click.ip,
click.country.length == 0 ? this.colors.grey('Unknown') : click.country,
click.date.toSQL()
])
})
table.render()
}
}

49
commands/Update.ts Normal file
View File

@@ -0,0 +1,49 @@
import {args, BaseCommand, flags} from '@adonisjs/core/build/standalone'
import Link from "App/Models/Link";
import {DateTime} from "luxon";
export default class Update extends BaseCommand {
public static commandName = 'link:update'
public static description = 'Update an existing link'
public static aliases = ['set']
public static settings = {
loadApp: true,
stayAlive: false,
}
@args.string({ description: 'Code of the new link' })
public code: string
@flags.string({ name: 'code', description: 'The new code of the link' })
public new_code: string
@flags.string({ description: 'The new target of the link' })
public target: string
@flags.string({ description: 'The new expiration date of the link' })
public expire: string
public async run () {
const link = await Link.findBy('code', this.code)
if (!link) {
this.logger.warning(`The link with code '${this.code}' does not exist!`)
return
}
if (this.target) {
link.target = this.target
const clicks = await link.related('clicks').query()
clicks.forEach(click => click.delete())
}
if (this.new_code) link.code = this.new_code
if (this.expire) {
(this.expire == 'PERMANENT'.toLowerCase() || this.expire == 'PERM'.toLowerCase()) ? link.type = 'PERMANENT' : link.type = 'TEMPORARY'
link.expire = DateTime.fromJSDate(new Date(this.expire || new Date())) ?? null
}
await link.save()
this.logger.info('The user was successfully updated!')
}
}