tirbofish/kitgit
feat/better-search / src / web / templates.rs · 15060 bytes
src/web/templates.rs
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
use crate::og::SocialMeta;
use crate::db::models::{
Access, BranchRule, CommitDay, GpgKey, Issue, PullRequest, Release, Repository, SshKey, User,
UserEmail,
};
use askama::Template;
use askama_web::WebTemplate;
use chrono::{DateTime, Utc};
use uuid::Uuid;
// ── view models ──────────────────────────────────────────────────────────────
pub struct ActivityRow {
pub kind: String,
/// Text before an optional issue/PR reference (e.g. `"commented on "`).
pub summary: String,
/// Linked phrase such as `"issue #1"` / `"pull #2"`.
pub ref_label: Option<String>,
pub ref_href: Option<String>,
pub actor_username: Option<String>,
pub actor_avatar: Option<String>,
pub repo_owner: Option<String>,
pub repo_name: Option<String>,
pub created_at: DateTime<Utc>,
}
pub struct ReactionView {
pub emoji: String,
pub label: String,
pub count: i64,
pub mine: bool,
}
pub struct CommentView {
pub id: Uuid,
pub author: User,
pub avatar_url: String,
pub body_html: String,
pub created_at: DateTime<Utc>,
pub reactions: Vec<ReactionView>,
}
pub struct DiffFileView {
pub path: String,
pub anchor: String,
pub additions: u32,
pub deletions: u32,
pub html: String,
pub truncated: bool,
pub total_lines: usize,
pub binary: bool,
}
pub struct TreeEntryView {
pub name: String,
pub path: String,
pub is_dir: bool,
pub mode: String,
}
pub struct CommitView {
pub id: String,
pub short_id: String,
pub message: String,
pub author: String,
pub email: String,
pub time: i64,
pub verified: bool,
pub verify_kind: String,
pub verify_fingerprint: String,
pub verify_fingerprint_label: String,
pub verified_at: String,
}
pub struct CollaboratorView {
pub user: User,
pub role: String,
pub avatar_url: String,
}
pub struct LanguageStatView {
pub name: String,
pub percent: f64,
pub color: String,
}
pub struct BranchRow {
pub name: String,
pub is_default: bool,
pub updated: String,
pub ahead: usize,
pub behind: usize,
pub pull_number: Option<i32>,
}
pub struct TagRow {
pub name: String,
pub short_id: String,
pub target: String,
pub message: String,
pub updated: String,
pub has_release: bool,
}
pub struct ReleaseAssetView {
pub id: Uuid,
pub filename: String,
pub size_label: String,
pub content_type: String,
}
// ── page templates ───────────────────────────────────────────────────────────
#[derive(Template, WebTemplate)]
#[template(path = "home.html")]
pub struct HomeTemplate {
pub viewer: Option<User>,
pub motd: String,
pub my_repos: Vec<Repository>,
pub activities: Vec<ActivityRow>,
pub social: SocialMeta,
}
pub struct ExploreRepo {
pub owner: String,
pub repo: Repository,
}
pub struct ExploreIssueHit {
pub owner: String,
pub repo_name: String,
pub number: i32,
pub title: String,
pub state: String,
pub visibility: String,
pub updated_at: DateTime<Utc>,
}
pub struct ExplorePullHit {
pub owner: String,
pub repo_name: String,
pub number: i32,
pub title: String,
pub state: String,
pub visibility: String,
pub updated_at: DateTime<Utc>,
}
#[derive(Template, WebTemplate)]
#[template(path = "explore.html")]
pub struct ExploreTemplate {
pub viewer: Option<User>,
pub query: String,
pub search_type: String,
pub repos: Vec<ExploreRepo>,
pub users: Vec<User>,
pub issues: Vec<ExploreIssueHit>,
pub pulls: Vec<ExplorePullHit>,
pub social: SocialMeta,
}
#[derive(Template, WebTemplate)]
#[template(path = "login.html")]
pub struct LoginTemplate {
pub viewer: Option<User>,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "signup.html")]
pub struct SignupTemplate {
pub viewer: Option<User>,
pub error: Option<String>,
pub signups_enabled: bool,
pub signup_disabled_message: String,
pub invite: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "error.html")]
pub struct ErrorTemplate {
pub viewer: Option<User>,
pub status: u16,
pub message: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "new_repo.html")]
pub struct NewRepoTemplate {
pub viewer: Option<User>,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "profile_settings.html")]
pub struct ProfileSettingsTemplate {
pub viewer: Option<User>,
pub user: User,
pub avatar_url: String,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "account_settings.html")]
pub struct AccountSettingsTemplate {
pub viewer: Option<User>,
pub user: User,
pub emails: Vec<UserEmail>,
pub sessions: Vec<SessionView>,
pub current_session_id: Option<Uuid>,
pub error: Option<String>,
pub message: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "mfa_challenge.html")]
pub struct MfaChallengeTemplate {
pub viewer: Option<User>,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "mfa_settings.html")]
pub struct MfaSettingsTemplate {
pub viewer: Option<User>,
pub user: User,
pub enabled: bool,
pub pending: bool,
pub secret: Option<String>,
pub qr_data_uri: Option<String>,
pub recovery_codes: Option<Vec<String>>,
pub recovery_remaining: usize,
pub error: Option<String>,
pub message: Option<String>,
}
pub struct SessionView {
pub id: Uuid,
pub created_at: DateTime<Utc>,
pub last_seen_at: DateTime<Utc>,
pub user_agent: String,
pub ip_address: String,
pub is_current: bool,
}
#[derive(Template, WebTemplate)]
#[template(path = "keys_settings.html")]
pub struct KeysSettingsTemplate {
pub viewer: Option<User>,
pub keys: Vec<SshKey>,
pub gpg_keys: Vec<GpgKey>,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "profile.html")]
pub struct ProfileTemplate {
pub viewer: Option<User>,
pub profile: User,
pub avatar_url: String,
pub repos: Vec<Repository>,
pub starred: Vec<ExploreRepo>,
pub watched_activity: Vec<ActivityRow>,
pub graph: Vec<CommitDay>,
pub has_activity: bool,
pub is_self: bool,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_home.html")]
pub struct RepoHomeTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub owner_avatar: String,
pub clone_http: String,
pub clone_ssh: String,
pub branches: Vec<String>,
pub current_branch: String,
pub entries: Vec<TreeEntryView>,
pub readme_html: Option<String>,
pub languages: Vec<LanguageStatView>,
pub empty: bool,
pub latest_commit: Option<CommitView>,
pub starred: bool,
pub watching: bool,
pub forked_from: Option<(String, String)>,
pub social: SocialMeta,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_tree.html")]
pub struct RepoTreeTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub branch: String,
pub path: String,
pub breadcrumbs: Vec<(String, String)>,
pub entries: Vec<TreeEntryView>,
pub readme_html: Option<String>,
pub latest_commit: Option<CommitView>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_blob.html")]
pub struct RepoBlobTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub branch: String,
pub path: String,
pub breadcrumbs: Vec<(String, String)>,
pub binary: bool,
pub size: usize,
pub content_html: Option<String>,
pub is_markdown: bool,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_commits.html")]
pub struct RepoCommitsTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub branch: String,
pub commits: Vec<CommitView>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_commit.html")]
pub struct RepoCommitTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub commit: CommitView,
pub message_html: String,
pub diff_html: String,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_diff.html")]
pub struct RepoDiffTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub commit: CommitView,
pub diff_html: String,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_branches.html")]
pub struct RepoBranchesTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<BranchRow>,
pub tags: Vec<TagRow>,
pub clone_http: String,
pub clone_ssh: String,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "issues_list.html")]
pub struct IssuesListTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub issues: Vec<Issue>,
pub state_filter: String,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "issue_new.html")]
pub struct IssueNewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "issue_view.html")]
pub struct IssueViewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub issue: Issue,
pub author: User,
pub author_avatar: String,
pub body_html: String,
pub comments: Vec<CommentView>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "pulls_list.html")]
pub struct PullsListTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub pulls: Vec<PullRequest>,
pub state_filter: String,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "pull_new.html")]
pub struct PullNewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
pub upstream: Option<(String, String)>,
}
#[derive(Template, WebTemplate)]
#[template(path = "pull_view.html")]
pub struct PullViewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub pull: PullRequest,
pub author: User,
pub author_avatar: String,
pub body_html: String,
pub comments: Vec<CommentView>,
pub commits: Vec<CommitView>,
pub diff_files: Vec<DiffFileView>,
pub tab: String,
pub conversation_count: usize,
pub can_merge: bool,
pub merge_styles: Vec<String>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "releases_list.html")]
pub struct ReleasesListTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub releases: Vec<Release>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "release_new.html")]
pub struct ReleaseNewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
pub tag_name: String,
pub title: String,
pub body: String,
pub target: String,
pub is_prerelease: bool,
pub is_draft: bool,
pub branches: Vec<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "release_edit.html")]
pub struct ReleaseEditTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub release: Release,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
pub target: String,
pub branches: Vec<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "release_view.html")]
pub struct ReleaseViewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub release: Release,
pub author: User,
pub author_avatar: String,
pub body_html: String,
pub assets: Vec<ReleaseAssetView>,
pub tag_short: String,
pub tag_target: String,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_settings.html")]
pub struct RepoSettingsTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub collaborators: Vec<CollaboratorView>,
pub branches: Vec<String>,
pub branch_rules: Vec<BranchRule>,
pub clone_http: String,
pub clone_ssh: String,
pub is_site_admin: bool,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "admin.html")]
pub struct AdminTemplate {
pub viewer: Option<User>,
pub users: Vec<User>,
pub user_query: String,
pub user_page: i64,
pub user_pages: i64,
pub user_total: i64,
pub motd: String,
pub announcement: String,
pub signups_enabled: bool,
pub signup_disabled_message: String,
pub invites: Vec<AdminInviteView>,
pub repos: Vec<AdminRepoView>,
pub repo_query: String,
pub repo_page: i64,
pub repo_pages: i64,
pub repo_total: i64,
pub stats: AdminStatsView,
pub flash: Option<String>,
}
pub struct AdminInviteView {
pub id: Uuid,
pub code: String,
pub created_at: DateTime<Utc>,
}
pub struct AdminRepoView {
pub id: Uuid,
pub owner: String,
pub name: String,
pub visibility: String,
pub archived: bool,
pub updated_at: DateTime<Utc>,
}
pub struct AdminStatsView {
pub user_count: i64,
pub repo_count: i64,
pub public_repo_count: i64,
pub recent_signups: i64,
pub active_invites: i64,
pub disk_label: String,
}