mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-14 17:41:30 +08:00
121 lines
3.0 KiB
Dart
121 lines
3.0 KiB
Dart
import 'package:path/path.dart' as p;
|
|
|
|
import 'package:gitjournal/core/link.dart';
|
|
import 'package:gitjournal/core/note.dart';
|
|
import 'package:gitjournal/core/notes_folder_fs.dart';
|
|
|
|
class LinkResolver {
|
|
final Note inputNote;
|
|
|
|
LinkResolver(this.inputNote);
|
|
|
|
Note resolveLink(Link l) {
|
|
if (l.isWikiLink) {
|
|
return resolveWikiLink(l.wikiTerm);
|
|
}
|
|
|
|
var rootFolder = inputNote.parent.rootFolder;
|
|
if (l.filePath.startsWith(rootFolder.folderPath)) {
|
|
var spec = l.filePath.substring(rootFolder.folderPath.length);
|
|
if (spec.startsWith('/')) {
|
|
spec = spec.substring(1);
|
|
}
|
|
return _getNoteWithSpec(rootFolder, spec);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
Note resolve(String link) {
|
|
if (isWikiLink(link)) {
|
|
// FIXME: What if the case is different?
|
|
return resolveWikiLink(stripWikiSyntax(link));
|
|
}
|
|
|
|
return _getNoteWithSpec(inputNote.parent, link);
|
|
}
|
|
|
|
static bool isWikiLink(String link) {
|
|
return link.startsWith('[[') && link.endsWith(']]') && link.length > 4;
|
|
}
|
|
|
|
static String stripWikiSyntax(String link) {
|
|
return link.substring(2, link.length - 2).trim();
|
|
}
|
|
|
|
Note resolveWikiLink(String term) {
|
|
if (term.contains(p.separator)) {
|
|
var spec = p.normalize(term);
|
|
return _getNoteWithSpec(inputNote.parent.rootFolder, spec);
|
|
}
|
|
|
|
var lowerCaseTerm = term.toLowerCase();
|
|
var termEndsWithMd = lowerCaseTerm.endsWith('.md');
|
|
var termEndsWithTxt = lowerCaseTerm.endsWith('.txt');
|
|
|
|
var rootFolder = inputNote.parent.rootFolder;
|
|
for (var note in rootFolder.getAllNotes()) {
|
|
var fileName = note.fileName;
|
|
if (fileName.toLowerCase().endsWith('.md')) {
|
|
if (termEndsWithMd) {
|
|
if (fileName == term) {
|
|
return note;
|
|
} else {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
var f = fileName.substring(0, fileName.length - 3);
|
|
if (f == term) {
|
|
return note;
|
|
}
|
|
} else if (fileName.toLowerCase().endsWith('.txt')) {
|
|
if (termEndsWithTxt) {
|
|
if (fileName == term) {
|
|
return note;
|
|
} else {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
var f = fileName.substring(0, fileName.length - 4);
|
|
if (f == term) {
|
|
return note;
|
|
}
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
Note _getNoteWithSpec(NotesFolderFS folder, String spec) {
|
|
var fullPath = p.normalize(p.join(folder.folderPath, spec));
|
|
if (!fullPath.startsWith(folder.folderPath)) {
|
|
folder = folder.rootFolder;
|
|
}
|
|
|
|
spec = fullPath.substring(folder.folderPath.length + 1);
|
|
|
|
var linkedNote = folder.getNoteWithSpec(spec);
|
|
if (linkedNote != null) {
|
|
return linkedNote;
|
|
}
|
|
|
|
if (!spec.endsWith('.md')) {
|
|
linkedNote = folder.getNoteWithSpec(spec + '.md');
|
|
if (linkedNote != null) {
|
|
return linkedNote;
|
|
}
|
|
}
|
|
|
|
if (!spec.endsWith('.txt')) {
|
|
linkedNote = folder.getNoteWithSpec(spec + '.txt');
|
|
if (linkedNote != null) {
|
|
return linkedNote;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|