2023-03-03 15:54:28 +00:00
|
|
|
import {
|
2023-06-22 15:20:04 +00:00
|
|
|
column,
|
|
|
|
SnakeCaseNamingStrategy,
|
|
|
|
manyToMany,
|
|
|
|
belongsTo,
|
|
|
|
hasMany,
|
2023-06-27 16:23:18 +00:00
|
|
|
computed,
|
2024-03-14 19:25:27 +00:00
|
|
|
hasOne
|
|
|
|
} from '@adonisjs/lucid/orm';
|
2023-03-03 15:54:28 +00:00
|
|
|
import { DateTime } from 'luxon';
|
2023-06-27 16:23:18 +00:00
|
|
|
import dayjs from 'dayjs';
|
2024-03-14 19:25:27 +00:00
|
|
|
import Person from './Person.js';
|
|
|
|
import User from './User.js';
|
|
|
|
import Title from './Title.js';
|
|
|
|
import Description from './Description.js';
|
|
|
|
import License from './License.js';
|
|
|
|
import Subject from './Subject.js';
|
|
|
|
import File from './File.js';
|
|
|
|
import Coverage from './Coverage.js';
|
|
|
|
import DatasetReference from './DatasetReference.js';
|
|
|
|
import Collection from './Collection.js';
|
|
|
|
import DatasetIdentifier from './DatasetIdentifier.js';
|
|
|
|
import Project from './Project.js';
|
|
|
|
import DocumentXmlCache from './DocumentXmlCache.js';
|
|
|
|
import DatasetExtension from '#app/Models/Traits/DatasetExtension';
|
|
|
|
import type { ManyToMany } from "@adonisjs/lucid/types/relations";
|
|
|
|
import type { BelongsTo } from "@adonisjs/lucid/types/relations";
|
|
|
|
import type { HasMany } from "@adonisjs/lucid/types/relations";
|
|
|
|
import type { HasOne } from "@adonisjs/lucid/types/relations";
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-09-26 15:53:00 +00:00
|
|
|
export default class Dataset extends DatasetExtension {
|
2023-06-22 15:20:04 +00:00
|
|
|
public static namingStrategy = new SnakeCaseNamingStrategy();
|
|
|
|
public static primaryKey = 'id';
|
|
|
|
public static table = 'documents';
|
|
|
|
public static selfAssignPrimaryKey = false;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-06-22 15:20:04 +00:00
|
|
|
@column({ isPrimary: true })
|
|
|
|
public id: number;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
@column({})
|
2023-07-17 17:13:30 +00:00
|
|
|
public server_state: string;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
@column({})
|
2023-09-26 15:53:00 +00:00
|
|
|
public publisher_name: string;
|
2023-06-22 15:20:04 +00:00
|
|
|
|
|
|
|
@column({ columnName: 'creating_corporation' })
|
2023-09-26 15:53:00 +00:00
|
|
|
public creating_corporation: string;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
@column.dateTime({ columnName: 'embargo_date' })
|
2023-09-26 15:53:00 +00:00
|
|
|
public embargo_date: DateTime;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
@column({})
|
2023-06-22 15:20:04 +00:00
|
|
|
public type: string;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-06-22 15:20:04 +00:00
|
|
|
@column({})
|
|
|
|
public language: string;
|
|
|
|
|
2024-01-04 15:40:05 +00:00
|
|
|
@column({columnName: 'publish_id'})
|
2023-09-04 11:24:58 +00:00
|
|
|
public publish_id: number | null = null;
|
|
|
|
|
|
|
|
@column({})
|
|
|
|
public project_id: number | null = null;
|
|
|
|
|
2023-06-22 15:20:04 +00:00
|
|
|
@column({})
|
|
|
|
public account_id: number | null = null;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-06-27 16:23:18 +00:00
|
|
|
@column({})
|
|
|
|
public editor_id: number | null = null;
|
|
|
|
|
|
|
|
@column({})
|
|
|
|
public reviewer_id: number | null = null;
|
|
|
|
|
|
|
|
@column({})
|
2023-07-17 17:13:30 +00:00
|
|
|
public reject_editor_note: string | null;
|
2023-06-27 16:23:18 +00:00
|
|
|
|
2023-07-28 15:08:20 +00:00
|
|
|
@column({})
|
|
|
|
public preferred_reviewer: string | null;
|
|
|
|
|
|
|
|
@column({})
|
|
|
|
public preferred_reviewer_email: string | null;
|
|
|
|
|
2023-06-27 16:23:18 +00:00
|
|
|
@column({})
|
2023-07-17 17:13:30 +00:00
|
|
|
public reject_reviewer_note: string | null;
|
2023-06-27 16:23:18 +00:00
|
|
|
|
2023-06-22 15:20:04 +00:00
|
|
|
@column.dateTime({ columnName: 'server_date_published' })
|
2023-09-26 15:53:00 +00:00
|
|
|
public server_date_published: DateTime;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-06-27 16:23:18 +00:00
|
|
|
// @column.dateTime({ autoCreate: true, columnName: 'created_at' })
|
|
|
|
@column.dateTime({
|
|
|
|
serialize: (value: Date | null) => {
|
|
|
|
return value ? dayjs(value).format('MMMM D YYYY HH:mm a') : value;
|
|
|
|
},
|
|
|
|
autoCreate: true,
|
|
|
|
columnName: 'created_at',
|
|
|
|
})
|
2023-09-26 15:53:00 +00:00
|
|
|
public created_at: DateTime;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2024-01-04 15:40:05 +00:00
|
|
|
@column.dateTime({
|
2023-11-30 12:40:32 +00:00
|
|
|
serialize: (value: Date | null) => {
|
|
|
|
return value ? dayjs(value).format('MMMM D YYYY HH:mm a') : value;
|
|
|
|
},
|
2024-01-04 15:40:05 +00:00
|
|
|
autoCreate: true,
|
|
|
|
autoUpdate: true,
|
|
|
|
columnName: 'server_date_modified',
|
|
|
|
})
|
2023-09-26 15:53:00 +00:00
|
|
|
public server_date_modified: DateTime;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
@manyToMany(() => Person, {
|
2023-06-22 15:20:04 +00:00
|
|
|
pivotForeignKey: 'document_id',
|
|
|
|
pivotRelatedForeignKey: 'person_id',
|
|
|
|
pivotTable: 'link_documents_persons',
|
|
|
|
pivotColumns: ['role', 'sort_order', 'allow_email_contact'],
|
|
|
|
})
|
|
|
|
public persons: ManyToMany<typeof Person>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the account that the dataset belongs to
|
|
|
|
*/
|
|
|
|
@belongsTo(() => User, {
|
|
|
|
foreignKey: 'account_id',
|
|
|
|
})
|
|
|
|
public user: BelongsTo<typeof User>;
|
|
|
|
|
2023-09-04 11:24:58 +00:00
|
|
|
@belongsTo(() => Project, {
|
|
|
|
foreignKey: 'project_id',
|
|
|
|
})
|
|
|
|
public project: BelongsTo<typeof Project>;
|
|
|
|
|
2023-06-22 15:20:04 +00:00
|
|
|
@hasMany(() => Title, {
|
|
|
|
foreignKey: 'document_id',
|
|
|
|
})
|
|
|
|
public titles: HasMany<typeof Title>;
|
|
|
|
|
|
|
|
@hasMany(() => Description, {
|
|
|
|
foreignKey: 'document_id',
|
|
|
|
})
|
|
|
|
public descriptions: HasMany<typeof Description>;
|
|
|
|
|
|
|
|
@manyToMany(() => License, {
|
|
|
|
pivotForeignKey: 'document_id',
|
|
|
|
pivotRelatedForeignKey: 'licence_id',
|
|
|
|
pivotTable: 'link_documents_licences',
|
|
|
|
})
|
|
|
|
public licenses: ManyToMany<typeof License>;
|
|
|
|
|
|
|
|
@manyToMany(() => Subject, {
|
|
|
|
pivotForeignKey: 'document_id',
|
|
|
|
pivotRelatedForeignKey: 'subject_id',
|
|
|
|
pivotTable: 'link_dataset_subjects',
|
|
|
|
})
|
|
|
|
public subjects: ManyToMany<typeof Subject>;
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2023-06-27 16:23:18 +00:00
|
|
|
@hasMany(() => File, {
|
|
|
|
foreignKey: 'document_id',
|
|
|
|
})
|
|
|
|
public files: HasMany<typeof File>;
|
|
|
|
|
2023-07-28 15:08:20 +00:00
|
|
|
@hasOne(() => Coverage, {
|
|
|
|
foreignKey: 'dataset_id',
|
|
|
|
})
|
|
|
|
public coverage: HasOne<typeof Coverage>;
|
|
|
|
|
2023-08-01 15:06:51 +00:00
|
|
|
@hasMany(() => DatasetReference, {
|
|
|
|
foreignKey: 'document_id',
|
|
|
|
})
|
|
|
|
public references: HasMany<typeof DatasetReference>;
|
|
|
|
|
2023-09-04 11:24:58 +00:00
|
|
|
// Dataset.hasMany(Reference, {
|
|
|
|
// foreignKey: "related_document_id",
|
|
|
|
// as: "referenced_by",
|
|
|
|
// });
|
|
|
|
@hasMany(() => DatasetReference, {
|
|
|
|
foreignKey: 'related_document_id',
|
|
|
|
})
|
|
|
|
public referenced_by: HasMany<typeof DatasetReference>;
|
|
|
|
|
2023-08-23 15:07:26 +00:00
|
|
|
@manyToMany(() => Collection, {
|
|
|
|
pivotForeignKey: 'document_id',
|
|
|
|
pivotRelatedForeignKey: 'collection_id',
|
|
|
|
pivotTable: 'link_documents_collections',
|
|
|
|
})
|
|
|
|
public collections: ManyToMany<typeof Collection>;
|
|
|
|
|
|
|
|
@hasOne(() => DatasetIdentifier, {
|
2023-09-04 11:24:58 +00:00
|
|
|
foreignKey: 'dataset_id',
|
2023-08-23 15:07:26 +00:00
|
|
|
})
|
|
|
|
public identifier: HasOne<typeof DatasetIdentifier>;
|
|
|
|
|
2023-06-27 16:23:18 +00:00
|
|
|
@computed({
|
|
|
|
serializeAs: 'main_title',
|
|
|
|
})
|
|
|
|
public get mainTitle() {
|
|
|
|
// return `${this.firstName} ${this.lastName}`;
|
|
|
|
const mainTitle = this.titles?.find((title) => title.type === 'Main');
|
|
|
|
return mainTitle ? mainTitle.value : null;
|
|
|
|
}
|
2023-09-04 11:24:58 +00:00
|
|
|
|
2023-11-30 12:40:32 +00:00
|
|
|
@computed({
|
|
|
|
serializeAs: 'main_abstract',
|
|
|
|
})
|
|
|
|
public get mainAbstract() {
|
|
|
|
// return `${this.firstName} ${this.lastName}`;
|
|
|
|
const mainTitle = this.descriptions?.find((desc) => desc.type === 'Abstract');
|
|
|
|
return mainTitle ? mainTitle.value : null;
|
|
|
|
}
|
|
|
|
|
2023-09-04 11:24:58 +00:00
|
|
|
@manyToMany(() => Person, {
|
|
|
|
pivotForeignKey: 'document_id',
|
|
|
|
pivotRelatedForeignKey: 'person_id',
|
|
|
|
pivotTable: 'link_documents_persons',
|
|
|
|
pivotColumns: ['role', 'sort_order', 'allow_email_contact'],
|
|
|
|
onQuery(query) {
|
|
|
|
query.wherePivot('role', 'author');
|
|
|
|
},
|
|
|
|
})
|
|
|
|
public authors: ManyToMany<typeof Person>;
|
2023-09-05 16:18:42 +00:00
|
|
|
|
2023-09-04 11:24:58 +00:00
|
|
|
@manyToMany(() => Person, {
|
|
|
|
pivotForeignKey: 'document_id',
|
|
|
|
pivotRelatedForeignKey: 'person_id',
|
|
|
|
pivotTable: 'link_documents_persons',
|
2023-11-27 16:17:22 +00:00
|
|
|
pivotColumns: ['role', 'sort_order', 'allow_email_contact', 'contributor_type'],
|
2023-09-04 11:24:58 +00:00
|
|
|
onQuery(query) {
|
|
|
|
query.wherePivot('role', 'contributor');
|
|
|
|
},
|
|
|
|
})
|
|
|
|
public contributors: ManyToMany<typeof Person>;
|
2023-09-26 15:53:00 +00:00
|
|
|
|
|
|
|
@hasOne(() => DocumentXmlCache, {
|
|
|
|
foreignKey: 'document_id',
|
|
|
|
})
|
|
|
|
public xmlCache: HasOne<typeof DocumentXmlCache>;
|
2023-10-03 19:11:02 +00:00
|
|
|
|
2023-12-12 14:22:25 +00:00
|
|
|
/**
|
|
|
|
* Get the account that the dataset belongs to
|
|
|
|
*/
|
|
|
|
@belongsTo(() => User, {
|
|
|
|
foreignKey: 'editor_id',
|
|
|
|
})
|
|
|
|
public editor: BelongsTo<typeof User>;
|
|
|
|
|
|
|
|
@belongsTo(() => User, {
|
|
|
|
foreignKey: 'reviewer_id',
|
|
|
|
})
|
|
|
|
public reviewer: BelongsTo<typeof User>;
|
|
|
|
|
2023-10-03 19:11:02 +00:00
|
|
|
static async earliestPublicationDate(): Promise<Dataset | null> {
|
|
|
|
const serverState = 'published';
|
|
|
|
|
|
|
|
const model = await this.query().where('server_state', serverState).orderBy('server_date_published', 'asc').first();
|
|
|
|
|
|
|
|
return model || null;
|
|
|
|
}
|
2024-01-04 15:40:05 +00:00
|
|
|
|
|
|
|
static async getMax (column: string) {
|
|
|
|
let dataset = await this.query().max(column + ' as max_publish_id').firstOrFail();
|
|
|
|
return dataset.$extras.max_publish_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
@computed({
|
|
|
|
serializeAs: 'remaining_time',
|
|
|
|
})
|
|
|
|
public get remainingTime() {
|
|
|
|
const dateFuture = this.server_date_modified.plus({ days: 14 });
|
|
|
|
if (this.server_state === 'approved') {
|
|
|
|
const now = DateTime.now();
|
|
|
|
let duration = dateFuture.diff(now, ['days', 'hours', 'months']).toObject();
|
|
|
|
return duration.days;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2023-03-03 15:54:28 +00:00
|
|
|
}
|