UNPKG

@melchyore/adonis-cache

Version:
44 lines (43 loc) 2.05 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); const standalone_1 = require("@adonisjs/core/build/standalone"); class Forget extends standalone_1.BaseCommand { async run() { const Container = this.application.container; const Event = Container.use('Adonis/Core/Event'); const Cache = Container.use('Adonis/Addons/Cache'); const store = this.store ?? this.application.config.get('cache').store; Event.emit('cache:clearing', { store }); const result = await Cache.use(store).clear(); if (result) { Event.emit('cache:cleared', { store }); this.logger.info('Application cache cleared successfully.'); } else { this.logger.warning('Failed to clear cache. Make sure you have the appropriate permissions.'); } } } Forget.commandName = 'cache:clear'; Forget.description = 'Flush the application cache'; Forget.settings = { loadApp: true, stayAlive: false }; __decorate([ standalone_1.args.string({ description: 'The name of the store you would like to clear', required: false }), __metadata("design:type", Object) ], Forget.prototype, "store", void 0); exports.default = Forget;