-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.ts
220 lines (189 loc) · 6.61 KB
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
import { Plugin, requestUrl, Notice, PluginSettingTab, Setting, TFile, App } from 'obsidian';
interface QuickShareNotePluginSettings {
githubToken: string;
imgurClientId: string;
showFrontmatter: boolean; // Add this line
}
const DEFAULT_SETTINGS: QuickShareNotePluginSettings = {
githubToken: '',
imgurClientId: '',
showFrontmatter: true // Add this line
};
export default class QuickShareNotePlugin extends Plugin {
settings: QuickShareNotePluginSettings;
async onload() {
await this.loadSettings();
this.addSettingTab(new QuickShareNoteSettingTab(this.app, this));
this.addCommand({
id: 'publish-note-to-gist',
name: 'Publish note to GitHub gist',
callback: () => this.publishNoteToGist(),
});
}
async publishNoteToGist() {
const activeFile = this.app.workspace.getActiveFile();
if (!activeFile) {
new Notice('No active file found');
return;
}
const notice = new Notice(`Uploading notes and images: ${activeFile.name}...`, 0); // Include file name
let fileContent = await this.app.vault.read(activeFile);
let updatedContent = await this.uploadImagesAndReplaceLinks(fileContent);
const gistIdMatch = updatedContent.match(/gist-publish-url: https.*\/(.*)/);
if (!this.settings.showFrontmatter) {
updatedContent = updatedContent.replace(/^---\n[\s\S]*?\n---\n/, ''); // Remove frontmatter if setting is false
}
const frontmatterMatch = updatedContent.match(/^---\n[\s\S]*?\n---\n/);
const frontmatter = frontmatterMatch ? frontmatterMatch[0] : '';
const contentWithoutFrontmatter = updatedContent.replace(frontmatter, '');
const fileNameWithoutSuffix = activeFile.name.replace(/\.[^/.]+$/, ''); // Remove file suffix
const header = `# ${fileNameWithoutSuffix}\n\n`;
const contentToPublish = frontmatter + header + contentWithoutFrontmatter;
const response = (gistIdMatch) ?
await this.updateGist(gistIdMatch[1], activeFile.name, contentToPublish)
: await this.createNewGist(activeFile.name, contentToPublish);
const gistUrl = response.json.html_url;
this.copyLinkToClipboard(gistUrl);
await this.updateFrontmatter(activeFile, gistUrl);
notice.hide();
new Notice('Note published to GitHub gist');
}
async createNewGist(activeFileName: string, contentToPublish: string) {
return await requestUrl({
url: 'https://api.github.com/gists',
method: 'POST',
headers: {
Authorization: `token ${this.settings.githubToken}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
files: {
[activeFileName]: {
content: contentToPublish,
},
},
public: false, // Set to false for secret gist
}),
});
}
async updateGist(gistId: string, activeFileName: string, contentToPublish: string) {
return await requestUrl({
url: `https://api.github.com/gists/${gistId}`,
method: 'PATCH',
headers: {
Authorization: `token ${this.settings.githubToken}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
files: {
[activeFileName]: {
content: contentToPublish,
},
},
}),
});
}
async addHeaderToContent(file: TFile) {
const fileContent = await this.app.vault.read(file);
const header = `# ${file.name}\n\n`;
const newContent = header + fileContent;
await this.app.vault.modify(file, newContent);
}
async updateFrontmatter(file: TFile, url: string) {
const fileContent = await this.app.vault.read(file);
const frontmatterRegex = /^---\n([\s\S]*?)\n---/;
const match = frontmatterRegex.exec(fileContent);
let newContent;
if (match) {
const frontmatter = match[1];
const updatedFrontmatter = frontmatter.includes('gist-publish-url')
? frontmatter.replace(/gist-publish-url: .*/, `gist-publish-url: ${url}`)
: `${frontmatter}\ngist-publish-url: ${url}`;
newContent = fileContent.replace(frontmatterRegex, `---\n${updatedFrontmatter}\n---`);
} else {
newContent = `---\ngist-publish-url: ${url}\n---\n${fileContent}`;
}
await this.app.vault.modify(file, newContent);
}
async uploadImagesAndReplaceLinks(content: string): Promise<string> {
const imageRegex = /!\[\[(.*?)\]\]/g;
const activeFile = this.app.workspace.getActiveFile();
const notePath = activeFile ? activeFile.path.replace(/[^/]+$/, '') : '';
let match;
while ((match = imageRegex.exec(content)) !== null) {
const attachFile = this.app.metadataCache.getFirstLinkpathDest(match[1], notePath);
if (attachFile == null) {
continue;
}
const imageData = await this.app.vault.adapter.readBinary(attachFile.path);
const imageUrl = await this.uploadImageToImgur(imageData);
content = content.replace(match[0], ``);
}
return content;
}
async uploadImageToImgur(imageData: ArrayBuffer): Promise<string> {
const response = await requestUrl({
url: 'https://api.imgur.com/3/image',
method: 'POST',
body: imageData,
headers: {
Authorization: `Client-ID ${this.settings.imgurClientId}`,
'Content-Type': 'application/octet-stream',
},
});
return response.json.data.link;
}
copyLinkToClipboard(link: string) {
navigator.clipboard.writeText(link).then(() => {
new Notice('gist URL copied to clipboard');
}, (err) => {
new Notice('Failed to copy gist URL to clipboard');
});
}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
}
async saveSettings() {
await this.saveData(this.settings);
}
}
class QuickShareNoteSettingTab extends PluginSettingTab {
plugin: QuickShareNotePlugin;
constructor(app: App, plugin: QuickShareNotePlugin) {
super(app, plugin);
this.plugin = plugin;
}
display(): void {
const { containerEl } = this;
containerEl.empty();
new Setting(containerEl)
.setName('GitHub token')
.setDesc('Enter your GitHub token')
.addText(text => text
.setPlaceholder('Enter your token')
.setValue(this.plugin.settings.githubToken)
.onChange(async (value) => {
this.plugin.settings.githubToken = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl)
.setName('Imgur client ID')
.setDesc('Enter your Imgur client ID')
.addText(text => text
.setPlaceholder('Enter your client ID')
.setValue(this.plugin.settings.imgurClientId)
.onChange(async (value) => {
this.plugin.settings.imgurClientId = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl) // Add this block
.setName('Show frontmatter')
.setDesc('Show frontmatter in published note')
.addToggle(toggle => toggle
.setValue(this.plugin.settings.showFrontmatter)
.onChange(async (value) => {
this.plugin.settings.showFrontmatter = value;
await this.plugin.saveSettings();
}));
}
}