forked from cory/tildefriends
		
	Compare commits
	
		
			1 Commits
		
	
	
		
			05451d98b3
			...
			tasiaiso-s
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 773396ac85 | 
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -8,4 +8,3 @@ out | |||||||
| *.swo | *.swo | ||||||
| *.swp | *.swp | ||||||
| .zsign_cache/ | .zsign_cache/ | ||||||
| result |  | ||||||
|   | |||||||
| @@ -4,8 +4,7 @@ | |||||||
| 		<script> | 		<script> | ||||||
| 			const g_data = $data; | 			const g_data = $data; | ||||||
| 		</script> | 		</script> | ||||||
| 		<link rel="stylesheet" href="w3.css" /> | 		<link rel="stylesheet" href="w3.css"></link> | ||||||
| 		<!-- prettier-ignore --> |  | ||||||
| 		<style> | 		<style> | ||||||
| 			/* 2018 Valiant Poppy */ | 			/* 2018 Valiant Poppy */ | ||||||
| 			.w3-theme-l5 {color:#000 !important; background-color:#fbf3f3 !important} | 			.w3-theme-l5 {color:#000 !important; background-color:#fbf3f3 !important} | ||||||
|   | |||||||
| @@ -42,27 +42,10 @@ window.addEventListener('load', function () { | |||||||
| 		} else if (description.type === 'textarea') { | 		} else if (description.type === 'textarea') { | ||||||
| 			return html` | 			return html` | ||||||
| 				<li class="w3-row"> | 				<li class="w3-row"> | ||||||
| 					<label class="w3-quarter" for=${'gs_' + key} style="font-weight: bold" | 					<label class="w3-quarter" for=${'gs_' + key} style="font-weight: bold">${key}</label> | ||||||
| 						>${key}</label |  | ||||||
| 					> |  | ||||||
| 					<div class="w3-rest w3-padding">${description.description}</div> | 					<div class="w3-rest w3-padding">${description.description}</div> | ||||||
| 					<textarea | 					<textarea class="w3-input" style="vertical-align: top; resize: vertical" id=${'gs_' + key}>${description.value}</textarea> | ||||||
| 						class="w3-input" | 					<button class="w3-button w3-right w3-quarter w3-theme-action" @click=${(e) => global_settings_set(key, e.srcElement.previousElementSibling.value)}>Set</button> | ||||||
| 						style="vertical-align: top; resize: vertical" |  | ||||||
| 						id=${'gs_' + key} |  | ||||||
| 					> |  | ||||||
| ${description.value}</textarea |  | ||||||
| 					> |  | ||||||
| 					<button |  | ||||||
| 						class="w3-button w3-right w3-quarter w3-theme-action" |  | ||||||
| 						@click=${(e) => |  | ||||||
| 							global_settings_set( |  | ||||||
| 								key, |  | ||||||
| 								e.srcElement.previousElementSibling.value |  | ||||||
| 							)} |  | ||||||
| 					> |  | ||||||
| 						Set |  | ||||||
| 					</button> |  | ||||||
| 				</li> | 				</li> | ||||||
| 			`; | 			`; | ||||||
| 		} else { | 		} else { | ||||||
| @@ -78,17 +61,13 @@ ${description.value}</textarea | |||||||
| 	} | 	} | ||||||
| 	const user_template = (user, permissions) => html` | 	const user_template = (user, permissions) => html` | ||||||
| 		<li class="w3-card w3-margin"> | 		<li class="w3-card w3-margin"> | ||||||
| 			<button | 			<button class="w3-button w3-theme-action" @click=${(e) => delete_user(user)}>Delete</button> | ||||||
| 				class="w3-button w3-theme-action" |  | ||||||
| 				@click=${(e) => delete_user(user)} |  | ||||||
| 			> |  | ||||||
| 				Delete |  | ||||||
| 			</button> |  | ||||||
| 			${user}: ${permissions.map((x) => permission_template(x))} | 			${user}: ${permissions.map((x) => permission_template(x))} | ||||||
| 		</li> | 		</li> | ||||||
| 	`; | 	`; | ||||||
| 	const users_template = (users) => | 	const users_template = (users) => | ||||||
| 		html` <header class="w3-container w3-theme-l2"><h2>Users</h2></header> | 		html` | ||||||
|  | 			<header class="w3-container w3-theme-l2"><h2>Users</h2></header> | ||||||
| 			<ul class="w3-ul"> | 			<ul class="w3-ul"> | ||||||
| 				${Object.entries(users).map((u) => user_template(u[0], u[1]))} | 				${Object.entries(users).map((u) => user_template(u[0], u[1]))} | ||||||
| 			</ul>`; | 			</ul>`; | ||||||
|   | |||||||
| @@ -116,18 +116,16 @@ async function main() { | |||||||
| 		<div class="w3-card-4 w3-margin"> | 		<div class="w3-card-4 w3-margin"> | ||||||
| 			<header class="w3-container w3-theme-l2"><h2>Identities</h2></header> | 			<header class="w3-container w3-theme-l2"><h2>Identities</h2></header> | ||||||
| 			<ul class="w3-ul">` + | 			<ul class="w3-ul">` + | ||||||
| 			ids | 				ids | ||||||
| 				.map( | 					.map( | ||||||
| 					( | 						(id) => `<li style="overflow: hidden; text-wrap: nowrap; text-overflow: ellipsis"> | ||||||
| 						id |  | ||||||
| 					) => `<li style="overflow: hidden; text-wrap: nowrap; text-overflow: ellipsis"> |  | ||||||
| 				<button onclick="handler.export_id(event)" data-id="${id}" class="w3-button w3-theme">Export Identity</button> | 				<button onclick="handler.export_id(event)" data-id="${id}" class="w3-button w3-theme">Export Identity</button> | ||||||
| 				<button onclick="handler.delete_id(event)" data-id="${id}" class="w3-button w3-theme">Delete Identity</button> | 				<button onclick="handler.delete_id(event)" data-id="${id}" class="w3-button w3-theme">Delete Identity</button> | ||||||
| 				${id} | 				${id} | ||||||
| 			</li>` | 			</li>` | ||||||
| 				) | 					) | ||||||
| 				.join('\n') + | 					.join('\n') + | ||||||
| 			`	</ul> | 				`	</ul> | ||||||
| 		</div> | 		</div> | ||||||
| 	</body>` | 	</body>` | ||||||
| 	); | 	); | ||||||
|   | |||||||
| @@ -1,5 +1,5 @@ | |||||||
| { | { | ||||||
| 	"type": "tildefriends-app", | 	"type": "tildefriends-app", | ||||||
| 	"emoji": "🐌", | 	"emoji": "🐌", | ||||||
| 	"previous": "&wA6sLaDxtYeFdVCCu8jyhPsGYtGZEjbWQHeGOn0Yifg=.sha256" | 	"previous": "&raSj7ozmSDNGmB6TtjDk7oOiTc33ZN+RrBMASJ2F4cA=.sha256" | ||||||
| } | } | ||||||
|   | |||||||
| @@ -340,20 +340,26 @@ class TfElement extends LitElement { | |||||||
| 		}; | 		}; | ||||||
|  |  | ||||||
| 		let tabs = html` | 		let tabs = html` | ||||||
|  | 			<style> | ||||||
|  | 				@media only screen and (max-width: 650px) { | ||||||
|  | 					.hide-on-small-screens { | ||||||
|  | 						display: none; | ||||||
|  | 					} | ||||||
|  | 				} | ||||||
|  | 			</style> | ||||||
| 			<div class="w3-bar w3-theme-l1"> | 			<div class="w3-bar w3-theme-l1"> | ||||||
| 				${Object.entries(k_tabs).map( | 				${Object.entries(k_tabs).map( | ||||||
| 					([k, v]) => html` | 					([k, v]) => html` | ||||||
| 						<button | 						<button | ||||||
| 							title=${v} | 							title=${v} | ||||||
| 							class="w3-bar-item w3-padding w3-hover-theme tab ${self.tab == v | 							class="w3-bar-item w3-padding-large w3-hover-theme tab ${self.tab == | ||||||
|  | 							v | ||||||
| 								? 'w3-theme-l2' | 								? 'w3-theme-l2' | ||||||
| 								: 'w3-theme-l1'}" | 								: 'w3-theme-l1'}" | ||||||
| 							@click=${() => self.set_tab(v)} | 							@click=${() => self.set_tab(v)} | ||||||
| 						> | 						> | ||||||
| 							${k} | 							${k} | ||||||
| 							<span class=${self.tab == v ? '' : 'w3-hide-small'} | 							<span class="hide-on-small-screens">${v}</span> | ||||||
| 								>${v.charAt(0).toUpperCase() + v.substring(1)}</span |  | ||||||
| 							> |  | ||||||
| 						</button> | 						</button> | ||||||
| 					` | 					` | ||||||
| 				)} | 				)} | ||||||
| @@ -361,12 +367,10 @@ class TfElement extends LitElement { | |||||||
| 		`; | 		`; | ||||||
| 		let contents = !this.loaded | 		let contents = !this.loaded | ||||||
| 			? this.loading | 			? this.loading | ||||||
| 				? html`<div | 				? html`<div class="w3-panel w3-theme-l5 w3-card-4 w3-padding-large w3-round-xlarge"> | ||||||
| 							class="w3-panel w3-theme-l5 w3-card-4 w3-padding-large w3-round-xlarge" | 					Loading... | ||||||
| 						> | 				</div> | ||||||
| 							Loading... | 				${this.render_tab()}` | ||||||
| 						</div> |  | ||||||
| 						${this.render_tab()}` |  | ||||||
| 				: html`<div>Select or create an identity.</div>` | 				: html`<div>Select or create an identity.</div>` | ||||||
| 			: this.render_tab(); | 			: this.render_tab(); | ||||||
| 		return html` | 		return html` | ||||||
|   | |||||||
| @@ -295,18 +295,14 @@ class TfComposeElement extends LitElement { | |||||||
| 				{ | 				{ | ||||||
| 					values: values, | 					values: values, | ||||||
| 					selectTemplate: function (item) { | 					selectTemplate: function (item) { | ||||||
| 						return item | 						return item ? `[@${item.original.key}](${item.original.value})` : undefined; | ||||||
| 							? `[@${item.original.key}](${item.original.value})` |  | ||||||
| 							: undefined; |  | ||||||
| 					}, | 					}, | ||||||
| 				}, | 				}, | ||||||
| 				{ | 				{ | ||||||
| 					trigger: '&', | 					trigger: '&', | ||||||
| 					values: this.autocomplete, | 					values: this.autocomplete, | ||||||
| 					selectTemplate: function (item) { | 					selectTemplate: function (item) { | ||||||
| 						return item | 						return item ? `` : undefined; | ||||||
| 							? `` |  | ||||||
| 							: undefined; |  | ||||||
| 					}, | 					}, | ||||||
| 				}, | 				}, | ||||||
| 			], | 			], | ||||||
| @@ -548,7 +544,7 @@ class TfComposeElement extends LitElement { | |||||||
| 							@paste=${this.paste} | 							@paste=${this.paste} | ||||||
| 							contenteditable | 							contenteditable | ||||||
| 							.innerText=${live(draft.text ?? '')} | 							.innerText=${live(draft.text ?? '')} | ||||||
| 						></span> | 							></span> | ||||||
| 					</div> | 					</div> | ||||||
| 					<div class="w3-half w3-padding"> | 					<div class="w3-half w3-padding"> | ||||||
| 						${content_warning} | 						${content_warning} | ||||||
|   | |||||||
| @@ -247,7 +247,9 @@ ${JSON.stringify(mention, null, 2)}</pre | |||||||
| 		if (mentions.length) { | 		if (mentions.length) { | ||||||
| 			let self = this; | 			let self = this; | ||||||
| 			return html` | 			return html` | ||||||
| 				<fieldset style="padding: 0.5em; border: 1px solid black"> | 				<fieldset | ||||||
|  | 					style="padding: 0.5em; border: 1px solid black" | ||||||
|  | 				> | ||||||
| 					<legend>Mentions</legend> | 					<legend>Mentions</legend> | ||||||
| 					${mentions.map((x) => self.render_mention(x))} | 					${mentions.map((x) => self.render_mention(x))} | ||||||
| 				</fieldset> | 				</fieldset> | ||||||
|   | |||||||
| @@ -105,16 +105,6 @@ class TfTabConnectionsElement extends LitElement { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	render_connection(connection) { | 	render_connection(connection) { | ||||||
| 		let requests = Object.values( |  | ||||||
| 			connection.requests.reduce(function (accumulator, value) { |  | ||||||
| 				let key = `${value.name}:${Math.sign(value.request_number)}`; |  | ||||||
| 				if (!accumulator[key]) { |  | ||||||
| 					accumulator[key] = Object.assign({count: 0}, value); |  | ||||||
| 				} |  | ||||||
| 				accumulator[key].count++; |  | ||||||
| 				return accumulator; |  | ||||||
| 			}, {}) |  | ||||||
| 		); |  | ||||||
| 		return html` | 		return html` | ||||||
| 			<button | 			<button | ||||||
| 				class="w3-button w3-theme-d1" | 				class="w3-button w3-theme-d1" | ||||||
| @@ -126,20 +116,9 @@ class TfTabConnectionsElement extends LitElement { | |||||||
| 			${connection.tunnel !== undefined | 			${connection.tunnel !== undefined | ||||||
| 				? '🚇' | 				? '🚇' | ||||||
| 				: html`(${connection.host}:${connection.port})`} | 				: html`(${connection.host}:${connection.port})`} | ||||||
| 			<div> | 			<div>${connection.requests.map(x => html` | ||||||
| 				${requests.map( | 				<span class="w3-tag w3-small">${x.request_number > 0 ? '🟩' : '🟥'} ${x.name}</span> | ||||||
| 					(x) => html` | 			`)}</div> | ||||||
| 						<span class="w3-tag w3-small" |  | ||||||
| 							>${x.request_number > 0 ? '🟩' : '🟥'} ${x.name} |  | ||||||
| 							<span |  | ||||||
| 								class="w3-badge w3-white" |  | ||||||
| 								style=${x.count > 1 ? undefined : 'display: none'} |  | ||||||
| 								>${x.count}</span |  | ||||||
| 							></span |  | ||||||
| 						> |  | ||||||
| 					` |  | ||||||
| 				)} |  | ||||||
| 			</div> |  | ||||||
| 			<ul> | 			<ul> | ||||||
| 				${this.connections | 				${this.connections | ||||||
| 					.filter((x) => x.tunnel === this.connections.indexOf(connection)) | 					.filter((x) => x.tunnel === this.connections.indexOf(connection)) | ||||||
| @@ -208,16 +187,12 @@ class TfTabConnectionsElement extends LitElement { | |||||||
| 					${this.identities.map( | 					${this.identities.map( | ||||||
| 						(x) => | 						(x) => | ||||||
| 							html`<li class="w3-bar"> | 							html`<li class="w3-bar"> | ||||||
| 								${x == this.server_identity | 								${x == this.server_identity ? | ||||||
| 									? html`<span class="w3-tag w3-medium w3-round w3-theme-l1" | 									html`<span class="w3-tag w3-medium w3-round w3-theme-l1">🖥 local server</span>` : | ||||||
| 											>🖥 local server</span | 									undefined} | ||||||
| 										>` | 								${this.my_identities.indexOf(x) != -1 ? | ||||||
| 									: undefined} | 									html`<span class="w3-tag w3-medium w3-round w3-theme-d1">😎 you</span>` : | ||||||
| 								${this.my_identities.indexOf(x) != -1 | 									undefined} | ||||||
| 									? html`<span class="w3-tag w3-medium w3-round w3-theme-d1" |  | ||||||
| 											>😎 you</span |  | ||||||
| 										>` |  | ||||||
| 									: undefined} |  | ||||||
| 								<tf-user id=${x} .users=${this.users}></tf-user> | 								<tf-user id=${x} .users=${this.users}></tf-user> | ||||||
| 							</li>` | 							</li>` | ||||||
| 					)} | 					)} | ||||||
|   | |||||||
| @@ -115,17 +115,13 @@ class TfTabNewsElement extends LitElement { | |||||||
| 				></tf-profile>` | 				></tf-profile>` | ||||||
| 			: undefined; | 			: undefined; | ||||||
| 		let edit_profile; | 		let edit_profile; | ||||||
| 		if ( | 		if (!this.loading && | ||||||
| 			!this.loading && |  | ||||||
| 			this.users[this.whoami]?.name === undefined && | 			this.users[this.whoami]?.name === undefined && | ||||||
| 			this.hash.substring(1) != this.whoami | 			this.hash.substring(1) != this.whoami) { | ||||||
| 		) { | 			edit_profile = html` | ||||||
| 			edit_profile = html` <div | 				<div class="w3-panel w3-padding w3-round w3-card-4 w3-theme-l3"> | ||||||
| 				class="w3-panel w3-padding w3-round w3-card-4 w3-theme-l3" | 					ℹ️ Follow your identity link ☝️ above to edit your profile and set your name. | ||||||
| 			> | 				</div>`; | ||||||
| 				ℹ️ Follow your identity link ☝️ above to edit your profile and set your |  | ||||||
| 				name. |  | ||||||
| 			</div>`; |  | ||||||
| 		} | 		} | ||||||
| 		return html` | 		return html` | ||||||
| 			<p class="w3-bar"> | 			<p class="w3-bar"> | ||||||
|   | |||||||
| @@ -19,10 +19,6 @@ class TfUserElement extends LitElement { | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	render() { | 	render() { | ||||||
| 		let image = html`<span |  | ||||||
| 			class="w3-theme-light w3-circle" |  | ||||||
| 			style="display: inline-block; width: 2em; height: 2em; text-align: center; line-height: 2em" |  | ||||||
| 		>?</span>`; |  | ||||||
| 		let name = this.users?.[this.id]?.name; | 		let name = this.users?.[this.id]?.name; | ||||||
| 		name = | 		name = | ||||||
| 			name !== undefined | 			name !== undefined | ||||||
| @@ -30,20 +26,21 @@ class TfUserElement extends LitElement { | |||||||
| 				: html`<a target="_top" href=${'#' + this.id}>${this.id}</a>`; | 				: html`<a target="_top" href=${'#' + this.id}>${this.id}</a>`; | ||||||
|  |  | ||||||
| 		if (this.users[this.id]) { | 		if (this.users[this.id]) { | ||||||
| 			let image_link = this.users[this.id].image; | 			let image = this.users[this.id].image; | ||||||
| 			image_link = typeof image_link == 'string' ? image_link : image_link?.link; | 			image = typeof image == 'string' ? image : image?.link; | ||||||
| 			if (image_link !== undefined) { | 			return html` <div style="display: inline-block; font-weight: bold"> | ||||||
| 				image = html`<img | 				<img | ||||||
| 					class="w3-circle" | 					style="width: 2em; height: 2em; vertical-align: middle; border-radius: 50%" | ||||||
| 					style="width: 2em; height: 2em; vertical-align: middle" | 					?hidden=${image === undefined} | ||||||
| 					src="/${image_link}/view" | 					src="${image ? '/' + image + '/view' : undefined}" | ||||||
| 				/>`; | 				/> | ||||||
| 			} | 				${name} | ||||||
|  | 			</div>`; | ||||||
|  | 		} else { | ||||||
|  | 			return html` <div style="display: inline-block; font-weight: bold"> | ||||||
|  | 				${name} | ||||||
|  | 			</div>`; | ||||||
| 		} | 		} | ||||||
| 		return html` <div style="display: inline-block; font-weight: bold"> |  | ||||||
| 			${image} |  | ||||||
| 			${name} |  | ||||||
| 		</div>`; |  | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										68
									
								
								default.nix
									
									
									
									
									
								
							
							
						
						
									
										68
									
								
								default.nix
									
									
									
									
									
								
							| @@ -1,68 +0,0 @@ | |||||||
| # How to upgrade to a newer version |  | ||||||
| # - Comment `src.hash` |  | ||||||
| # - Change `version` |  | ||||||
| # - Run `$ nix build` |  | ||||||
| # This will fetch the source code |  | ||||||
| # Since `hash` is not provided, nix will stop building and throw an error: |  | ||||||
| # |  | ||||||
| # error: hash mismatch in fixed-output derivation '/nix/store/fghi3ljs6fhz8pwm3dh73j5fwjpq5wbz-source.drv': |  | ||||||
| #          specified: sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA= |  | ||||||
| #             got:    sha256-+uthA1w8CmZfW+WOK9wYGl2fUl/k10ufOc8W+Pwa9iQ= |  | ||||||
| # error: 1 dependencies of derivation '/nix/store/imcwsw5r74vkd8r0qa2k7cys2xfgraaz-tildefriends-0.0.18.drv' failed to build |  | ||||||
| # |  | ||||||
| # - Change `src.hash` to the new one, ie `sha256-+uthA1w8CmZfW+WOK9wYGl2fUl/k10ufOc8W+Pwa9iQ=` |  | ||||||
| # - Uncomment `src.hash` |  | ||||||
| # - Build again, this time it should work. |  | ||||||
| # - Check the release notes, if there's a new dependency or a change to `GNUMakefile`, this file might need to be changed too. |  | ||||||
| # For more details, contact tasiaiso @ https://tilde.club/~tasiaiso/ |  | ||||||
| # |  | ||||||
| # WARNING: currently it is pinned to `47838d5e482cb4aac40190fa0414f08b8cf94d40`. I couldn't get v0.0.18 to work for some reason. |  | ||||||
| # I'll change this in the next release - tasiaiso |  | ||||||
| { |  | ||||||
|   pkgs ? import <nixpkgs> {}, |  | ||||||
|   lib ? import <nixpkgs/lib>, |  | ||||||
| }: |  | ||||||
| pkgs.stdenv.mkDerivation rec { |  | ||||||
|   pname = "tildefriends"; |  | ||||||
|   version = "0.0.19"; |  | ||||||
|  |  | ||||||
|   src = pkgs.fetchFromGitea { |  | ||||||
|     domain = "dev.tildefriends.net"; |  | ||||||
|     owner = "cory"; |  | ||||||
|     repo = "tildefriends"; |  | ||||||
|     # rev = "v${version}"; |  | ||||||
|     rev = "47838d5e482cb4aac40190fa0414f08b8cf94d40"; |  | ||||||
|     hash = "sha256-mb5KYvWPIqgV64FOaXKHm2ownBJiiSRtdH8+YWiXwvE="; # 47838d5e482cb4aac40190fa0414f08b8cf94d40 |  | ||||||
|     fetchSubmodules = true; |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   nativeBuildInputs = with pkgs; [ |  | ||||||
|     gnumake |  | ||||||
|     openssl |  | ||||||
|     which |  | ||||||
|   ]; |  | ||||||
|  |  | ||||||
|   buildInputs = with pkgs; [ |  | ||||||
|     openssl |  | ||||||
|     which |  | ||||||
|   ]; |  | ||||||
|  |  | ||||||
|   buildPhase = '' |  | ||||||
|     make -j $NIX_BUILD_CORES release |  | ||||||
|   ''; |  | ||||||
|  |  | ||||||
|   installPhase = '' |  | ||||||
|     mkdir -p $out/bin |  | ||||||
|     cp -r out/release/tildefriends $out/bin |  | ||||||
|   ''; |  | ||||||
|  |  | ||||||
|   doCheck = false; |  | ||||||
|  |  | ||||||
|   meta = with pkgs; { |  | ||||||
|     homepage = "https://tildefriends.net"; |  | ||||||
|     description = "Make apps and friends from the comfort of your web browser."; |  | ||||||
|     mainProgram = "tildefriends"; |  | ||||||
|     license = with lib.licenses; [mit]; |  | ||||||
|     platforms = lib.platforms.all; |  | ||||||
|   }; |  | ||||||
| } |  | ||||||
							
								
								
									
										61
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										61
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							| @@ -1,61 +0,0 @@ | |||||||
| { |  | ||||||
|   "nodes": { |  | ||||||
|     "flake-utils": { |  | ||||||
|       "inputs": { |  | ||||||
|         "systems": "systems" |  | ||||||
|       }, |  | ||||||
|       "locked": { |  | ||||||
|         "lastModified": 1710146030, |  | ||||||
|         "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", |  | ||||||
|         "owner": "numtide", |  | ||||||
|         "repo": "flake-utils", |  | ||||||
|         "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", |  | ||||||
|         "type": "github" |  | ||||||
|       }, |  | ||||||
|       "original": { |  | ||||||
|         "owner": "numtide", |  | ||||||
|         "repo": "flake-utils", |  | ||||||
|         "type": "github" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "nixpkgs": { |  | ||||||
|       "locked": { |  | ||||||
|         "lastModified": 1715395895, |  | ||||||
|         "narHash": "sha256-DreMqi6+qa21ffLQqhMQL2XRUkAGt3N7iVB5FhJKie4=", |  | ||||||
|         "owner": "NixOS", |  | ||||||
|         "repo": "nixpkgs", |  | ||||||
|         "rev": "71bae31b7dbc335528ca7e96f479ec93462323ff", |  | ||||||
|         "type": "github" |  | ||||||
|       }, |  | ||||||
|       "original": { |  | ||||||
|         "owner": "NixOS", |  | ||||||
|         "ref": "nixos-23.11", |  | ||||||
|         "repo": "nixpkgs", |  | ||||||
|         "type": "github" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "root": { |  | ||||||
|       "inputs": { |  | ||||||
|         "flake-utils": "flake-utils", |  | ||||||
|         "nixpkgs": "nixpkgs" |  | ||||||
|       } |  | ||||||
|     }, |  | ||||||
|     "systems": { |  | ||||||
|       "locked": { |  | ||||||
|         "lastModified": 1681028828, |  | ||||||
|         "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", |  | ||||||
|         "owner": "nix-systems", |  | ||||||
|         "repo": "default", |  | ||||||
|         "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", |  | ||||||
|         "type": "github" |  | ||||||
|       }, |  | ||||||
|       "original": { |  | ||||||
|         "owner": "nix-systems", |  | ||||||
|         "repo": "default", |  | ||||||
|         "type": "github" |  | ||||||
|       } |  | ||||||
|     } |  | ||||||
|   }, |  | ||||||
|   "root": "root", |  | ||||||
|   "version": 7 |  | ||||||
| } |  | ||||||
							
								
								
									
										36
									
								
								flake.nix
									
									
									
									
									
								
							
							
						
						
									
										36
									
								
								flake.nix
									
									
									
									
									
								
							| @@ -1,36 +0,0 @@ | |||||||
| { |  | ||||||
|   description = "Tilde Friends is a platform for making, running, and sharing web applications"; |  | ||||||
|  |  | ||||||
|   inputs = { |  | ||||||
|     nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; |  | ||||||
|     flake-utils.url = "github:numtide/flake-utils"; |  | ||||||
|   }; |  | ||||||
|  |  | ||||||
|   outputs = { |  | ||||||
|     self, |  | ||||||
|     nixpkgs, |  | ||||||
|     flake-utils, |  | ||||||
|   }: |  | ||||||
|     flake-utils.lib.eachDefaultSystem (system: let |  | ||||||
|         pkgs = import nixpkgs { |  | ||||||
|           inherit system; |  | ||||||
|         }; |  | ||||||
|       in rec |  | ||||||
|       { |  | ||||||
|         # Nix formatter, run using `$ nix fmt` |  | ||||||
|         formatter = pkgs.alejandra; |  | ||||||
|  |  | ||||||
|         # Exports the tildefriends package |  | ||||||
|         packages.default = pkgs.callPackage ./default.nix {}; |  | ||||||
|  |  | ||||||
|         # Creates a shell with the necessary dependencies |  | ||||||
|         # Enter using `$ nix develop` |  | ||||||
|         devShell = pkgs.mkShell { |  | ||||||
|           buildInputs = with pkgs; [ |  | ||||||
|             openssl |  | ||||||
|             llvmPackages_17.clang-unwrapped |  | ||||||
|             unzip |  | ||||||
|           ]; |  | ||||||
|         }; |  | ||||||
|       }); |  | ||||||
| } |  | ||||||
							
								
								
									
										23
									
								
								src/ssb.db.c
									
									
									
									
									
								
							
							
						
						
									
										23
									
								
								src/ssb.db.c
									
									
									
									
									
								
							| @@ -737,11 +737,12 @@ bool tf_ssb_db_blob_store(tf_ssb_t* ssb, const uint8_t* blob, size_t size, char* | |||||||
| } | } | ||||||
|  |  | ||||||
| bool tf_ssb_db_get_message_by_author_and_sequence(tf_ssb_t* ssb, const char* author, int64_t sequence, char* out_message_id, size_t out_message_id_size, char* out_previous, | bool tf_ssb_db_get_message_by_author_and_sequence(tf_ssb_t* ssb, const char* author, int64_t sequence, char* out_message_id, size_t out_message_id_size, char* out_previous, | ||||||
| 	size_t out_previous_size, double* out_timestamp, char** out_content, char* out_hash, size_t out_hash_size, char* out_signature, size_t out_signature_size, int* out_flags) | 	size_t out_previous_size, char* out_author, size_t out_author_size, double* out_timestamp, char** out_content, char* out_hash, size_t out_hash_size, char* out_signature, | ||||||
|  | 	size_t out_signature_size, int* out_flags) | ||||||
| { | { | ||||||
| 	bool found = false; | 	bool found = false; | ||||||
| 	sqlite3_stmt* statement; | 	sqlite3_stmt* statement; | ||||||
| 	const char* query = "SELECT id, previous, timestamp, json(content), hash, signature, flags FROM messages WHERE author = ?1 AND sequence = ?2"; | 	const char* query = "SELECT id, previous, author, timestamp, json(content), hash, signature, flags FROM messages WHERE author = ?1 AND sequence = ?2"; | ||||||
| 	sqlite3* db = tf_ssb_acquire_db_reader(ssb); | 	sqlite3* db = tf_ssb_acquire_db_reader(ssb); | ||||||
| 	if (sqlite3_prepare(db, query, -1, &statement, NULL) == SQLITE_OK) | 	if (sqlite3_prepare(db, query, -1, &statement, NULL) == SQLITE_OK) | ||||||
| 	{ | 	{ | ||||||
| @@ -765,25 +766,29 @@ bool tf_ssb_db_get_message_by_author_and_sequence(tf_ssb_t* ssb, const char* aut | |||||||
| 					snprintf(out_previous, out_previous_size, "%s", (const char*)sqlite3_column_text(statement, 1)); | 					snprintf(out_previous, out_previous_size, "%s", (const char*)sqlite3_column_text(statement, 1)); | ||||||
| 				} | 				} | ||||||
| 			} | 			} | ||||||
|  | 			if (out_author) | ||||||
|  | 			{ | ||||||
|  | 				snprintf(out_author, out_author_size, "%s", (const char*)sqlite3_column_text(statement, 2)); | ||||||
|  | 			} | ||||||
| 			if (out_timestamp) | 			if (out_timestamp) | ||||||
| 			{ | 			{ | ||||||
| 				*out_timestamp = sqlite3_column_double(statement, 2); | 				*out_timestamp = sqlite3_column_double(statement, 3); | ||||||
| 			} | 			} | ||||||
| 			if (out_content) | 			if (out_content) | ||||||
| 			{ | 			{ | ||||||
| 				*out_content = tf_strdup((const char*)sqlite3_column_text(statement, 3)); | 				*out_content = tf_strdup((const char*)sqlite3_column_text(statement, 4)); | ||||||
| 			} | 			} | ||||||
| 			if (out_hash) | 			if (out_hash) | ||||||
| 			{ | 			{ | ||||||
| 				snprintf(out_hash, out_hash_size, "%s", (const char*)sqlite3_column_text(statement, 4)); | 				snprintf(out_hash, out_hash_size, "%s", (const char*)sqlite3_column_text(statement, 5)); | ||||||
| 			} | 			} | ||||||
| 			if (out_signature) | 			if (out_signature) | ||||||
| 			{ | 			{ | ||||||
| 				snprintf(out_signature, out_signature_size, "%s", (const char*)sqlite3_column_text(statement, 5)); | 				snprintf(out_signature, out_signature_size, "%s", (const char*)sqlite3_column_text(statement, 6)); | ||||||
| 			} | 			} | ||||||
| 			if (out_flags) | 			if (out_flags) | ||||||
| 			{ | 			{ | ||||||
| 				*out_flags = sqlite3_column_int(statement, 6); | 				*out_flags = sqlite3_column_int(statement, 7); | ||||||
| 			} | 			} | ||||||
| 			found = true; | 			found = true; | ||||||
| 		} | 		} | ||||||
| @@ -1829,8 +1834,8 @@ bool tf_ssb_db_verify(tf_ssb_t* ssb, const char* id) | |||||||
| 			char hash[32]; | 			char hash[32]; | ||||||
| 			char signature[256]; | 			char signature[256]; | ||||||
| 			int flags = 0; | 			int flags = 0; | ||||||
| 			if (tf_ssb_db_get_message_by_author_and_sequence( | 			if (tf_ssb_db_get_message_by_author_and_sequence(ssb, id, i, message_id, sizeof(message_id), previous, sizeof(previous), NULL, 0, ×tamp, &content, hash, | ||||||
| 					ssb, id, i, message_id, sizeof(message_id), previous, sizeof(previous), ×tamp, &content, hash, sizeof(hash), signature, sizeof(signature), &flags)) | 					sizeof(hash), signature, sizeof(signature), &flags)) | ||||||
| 			{ | 			{ | ||||||
| 				JSValue message = tf_ssb_format_message(context, previous, id, i, timestamp, hash, content, signature, flags); | 				JSValue message = tf_ssb_format_message(context, previous, id, i, timestamp, hash, content, signature, flags); | ||||||
| 				char calculated_id[k_id_base64_len]; | 				char calculated_id[k_id_base64_len]; | ||||||
|   | |||||||
							
								
								
									
										16
									
								
								src/ssb.db.h
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								src/ssb.db.h
									
									
									
									
									
								
							| @@ -122,19 +122,13 @@ JSValue tf_ssb_db_get_message_by_id(tf_ssb_t* ssb, const char* id, bool is_keys) | |||||||
| ** @param sequence The message sequence number. | ** @param sequence The message sequence number. | ||||||
| ** @param[out] out_message_id Populated with the message identifier. | ** @param[out] out_message_id Populated with the message identifier. | ||||||
| ** @param out_message_id_size The size of the out_message_id buffer. | ** @param out_message_id_size The size of the out_message_id buffer. | ||||||
| ** @param[out] out_previous Populated with the previous message identifier. |  | ||||||
| ** @param out_previous_size The size of the out_previous buffer. |  | ||||||
| ** @param[out] out_timestamp Populated with the timestamp. | ** @param[out] out_timestamp Populated with the timestamp. | ||||||
| ** @param[out] out_content Populated with the message content.  Free with tf_free(). | ** @param[out] out_content Populated with the message content.  Free with tf_free(). | ||||||
| ** @param[out] out_hash Populated with the message hash format. |  | ||||||
| ** @param out_hash_size The size of the out_hash buffer. |  | ||||||
| ** @param[out] out_signature Populated with the message signature. |  | ||||||
| ** @param out_signature_size The size of the out_signature buffer. |  | ||||||
| ** @param[out] out_flags Populated with flags describing the format of the message. |  | ||||||
| ** @return True if the message was found and retrieved. | ** @return True if the message was found and retrieved. | ||||||
| */ | */ | ||||||
| bool tf_ssb_db_get_message_by_author_and_sequence(tf_ssb_t* ssb, const char* author, int64_t sequence, char* out_message_id, size_t out_message_id_size, char* out_previous, | bool tf_ssb_db_get_message_by_author_and_sequence(tf_ssb_t* ssb, const char* author, int64_t sequence, char* out_message_id, size_t out_message_id_size, char* out_previous, | ||||||
| 	size_t out_previous_size, double* out_timestamp, char** out_content, char* out_hash, size_t out_hash_size, char* out_signature, size_t out_signature_size, int* out_flags); | 	size_t out_previous_size, char* out_author, size_t out_author_size, double* out_timestamp, char** out_content, char* out_hash, size_t out_hash_size, char* out_signature, | ||||||
|  | 	size_t out_signature_size, int* out_flags); | ||||||
|  |  | ||||||
| /** | /** | ||||||
| ** Get information about the last message from an author. | ** Get information about the last message from an author. | ||||||
| @@ -386,12 +380,6 @@ bool tf_ssb_db_set_property(tf_ssb_t* ssb, const char* id, const char* key, cons | |||||||
| */ | */ | ||||||
| void tf_ssb_db_resolve_index_async(tf_ssb_t* ssb, const char* host, void (*callback)(const char* path, void* user_data), void* user_data); | void tf_ssb_db_resolve_index_async(tf_ssb_t* ssb, const char* host, void (*callback)(const char* path, void* user_data), void* user_data); | ||||||
|  |  | ||||||
| /** |  | ||||||
| ** Verify an author's feed. |  | ||||||
| ** @param ssb The SSB instance. |  | ||||||
| ** @param id The author'd identity. |  | ||||||
| ** @return true If the feed verified successfully. |  | ||||||
| */ |  | ||||||
| bool tf_ssb_db_verify(tf_ssb_t* ssb, const char* id); | bool tf_ssb_db_verify(tf_ssb_t* ssb, const char* id); | ||||||
|  |  | ||||||
| /** | /** | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user