/* * XML Data Transform Service * Copyright (C) 2020 Memoriav * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ package org.memobase import com.beust.klaxon.json object Formats { const val csv = "CSV" const val tsv = "TSV" const val xlsx = "XLSX" const val xls = "XLS" const val ods = "ODS" const val invalid = "INVALID" const val error = "ERROR" } object Extensions { const val csv = "csv" const val tsv = "tsv" const val xlsx = "xlsx" const val xls = "xls" const val ods = "ods" } object ReportStatus { const val success = "SUCCESS" const val failure = "FAILURE" } object ErrorResult { val result = json { obj(Pair("message", Formats.error)) } } object ReportMessages { fun processFailure(fileName: String, message: String): String { return "Could not process file $fileName, because $message" } fun processSuccess(count: Int): String { return "Transformed table data into $count records." } fun invalidFile(fileName: String, message: String): String { return "Invalid Input Error: $message for file $fileName." } fun reportSuccess(identifier: String, count: Int): String { return "Successfully transformed row $count into key-value map with identifier $identifier." } fun reportFailure(message: String): String { return "Invalid Input Error: $message" } }