···11+author: QuietEngineer <qtengineer@proton.me>
22+license: MIT
+15
.github/dependabot.yaml
···11+# To get started with Dependabot version updates, you'll need to specify which
22+# package ecosystems to update and where the package manifests are located.
33+# Please see the documentation for all configuration options:
44+# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
55+66+version: 2
77+updates:
88+ - package-ecosystem: "gomod" # See documentation for possible values
99+ directory: "/" # Location of package manifests
1010+ schedule:
1111+ interval: "weekly"
1212+ - package-ecosystem: "github-actions"
1313+ directory: "/"
1414+ schedule:
1515+ interval: "weekly"
+26
.github/workflows/go.yaml
···11+name: go
22+on:
33+ push:
44+ branches:
55+ - main
66+ pull_request:
77+ branches:
88+ - main
99+1010+permissions:
1111+ contents: read
1212+1313+jobs:
1414+ build:
1515+ runs-on: ubuntu-latest
1616+ steps:
1717+ - uses: actions/checkout@v4
1818+ - name: setup go environment
1919+ uses: actions/setup-go@v5
2020+ with:
2121+ go-version: "1.24"
2222+ check-latest: true
2323+ - name: build
2424+ run: go build -v ./...
2525+ - name: test
2626+ run: go test -v ./...
···11+# This is an example .goreleaser.yml file with some sensible defaults.
22+# Make sure to check the documentation at https://goreleaser.com
33+44+# The lines below are called `modelines`. See `:help modeline`
55+# Feel free to remove those if you don't want/need to use them.
66+# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
77+# vim: set ts=2 sw=2 tw=0 fo=cnqoj
88+99+version: 2
1010+1111+before:
1212+ hooks:
1313+ # You may remove this if you don't use go modules.
1414+ - go mod tidy
1515+ # you may remove this if you don't need go generate
1616+ - go generate ./...
1717+1818+builds:
1919+ - env:
2020+ - CGO_ENABLED=0
2121+ goos:
2222+ - linux
2323+ # - windows
2424+ # - darwin
2525+ goarch:
2626+ - amd64
2727+ - arm64
2828+2929+archives:
3030+ - formats: [tar.gz]
3131+ # this name template makes the OS and Arch compatible with the results of `uname`.
3232+ name_template: >-
3333+ {{ .ProjectName }}_
3434+ {{- title .Os }}_
3535+ {{- if eq .Arch "amd64" }}x86_64
3636+ {{- else if eq .Arch "386" }}i386
3737+ {{- else }}{{ .Arch }}{{ end }}
3838+ {{- if .Arm }}v{{ .Arm }}{{ end }}
3939+ # use zip for windows archives
4040+ format_overrides:
4141+ - goos: windows
4242+ formats: [zip]
4343+4444+changelog:
4545+ sort: asc
4646+ filters:
4747+ exclude:
4848+ - "^docs:"
4949+ - "^test:"
5050+ - "^chore:"
5151+5252+release:
5353+ footer: >-
5454+5555+ ---
5656+5757+ Released by [GoReleaser](https://github.com/goreleaser/goreleaser).
···11+22+ Apache License
33+ Version 2.0, January 2004
44+ http://www.apache.org/licenses/
55+66+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
77+88+ 1. Definitions.
99+1010+ "License" shall mean the terms and conditions for use, reproduction,
1111+ and distribution as defined by Sections 1 through 9 of this document.
1212+1313+ "Licensor" shall mean the copyright owner or entity authorized by
1414+ the copyright owner that is granting the License.
1515+1616+ "Legal Entity" shall mean the union of the acting entity and all
1717+ other entities that control, are controlled by, or are under common
1818+ control with that entity. For the purposes of this definition,
1919+ "control" means (i) the power, direct or indirect, to cause the
2020+ direction or management of such entity, whether by contract or
2121+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
2222+ outstanding shares, or (iii) beneficial ownership of such entity.
2323+2424+ "You" (or "Your") shall mean an individual or Legal Entity
2525+ exercising permissions granted by this License.
2626+2727+ "Source" form shall mean the preferred form for making modifications,
2828+ including but not limited to software source code, documentation
2929+ source, and configuration files.
3030+3131+ "Object" form shall mean any form resulting from mechanical
3232+ transformation or translation of a Source form, including but
3333+ not limited to compiled object code, generated documentation,
3434+ and conversions to other media types.
3535+3636+ "Work" shall mean the work of authorship, whether in Source or
3737+ Object form, made available under the License, as indicated by a
3838+ copyright notice that is included in or attached to the work
3939+ (an example is provided in the Appendix below).
4040+4141+ "Derivative Works" shall mean any work, whether in Source or Object
4242+ form, that is based on (or derived from) the Work and for which the
4343+ editorial revisions, annotations, elaborations, or other modifications
4444+ represent, as a whole, an original work of authorship. For the purposes
4545+ of this License, Derivative Works shall not include works that remain
4646+ separable from, or merely link (or bind by name) to the interfaces of,
4747+ the Work and Derivative Works thereof.
4848+4949+ "Contribution" shall mean any work of authorship, including
5050+ the original version of the Work and any modifications or additions
5151+ to that Work or Derivative Works thereof, that is intentionally
5252+ submitted to Licensor for inclusion in the Work by the copyright owner
5353+ or by an individual or Legal Entity authorized to submit on behalf of
5454+ the copyright owner. For the purposes of this definition, "submitted"
5555+ means any form of electronic, verbal, or written communication sent
5656+ to the Licensor or its representatives, including but not limited to
5757+ communication on electronic mailing lists, source code control systems,
5858+ and issue tracking systems that are managed by, or on behalf of, the
5959+ Licensor for the purpose of discussing and improving the Work, but
6060+ excluding communication that is conspicuously marked or otherwise
6161+ designated in writing by the copyright owner as "Not a Contribution."
6262+6363+ "Contributor" shall mean Licensor and any individual or Legal Entity
6464+ on behalf of whom a Contribution has been received by Licensor and
6565+ subsequently incorporated within the Work.
6666+6767+ 2. Grant of Copyright License. Subject to the terms and conditions of
6868+ this License, each Contributor hereby grants to You a perpetual,
6969+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
7070+ copyright license to reproduce, prepare Derivative Works of,
7171+ publicly display, publicly perform, sublicense, and distribute the
7272+ Work and such Derivative Works in Source or Object form.
7373+7474+ 3. Grant of Patent License. Subject to the terms and conditions of
7575+ this License, each Contributor hereby grants to You a perpetual,
7676+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
7777+ (except as stated in this section) patent license to make, have made,
7878+ use, offer to sell, sell, import, and otherwise transfer the Work,
7979+ where such license applies only to those patent claims licensable
8080+ by such Contributor that are necessarily infringed by their
8181+ Contribution(s) alone or by combination of their Contribution(s)
8282+ with the Work to which such Contribution(s) was submitted. If You
8383+ institute patent litigation against any entity (including a
8484+ cross-claim or counterclaim in a lawsuit) alleging that the Work
8585+ or a Contribution incorporated within the Work constitutes direct
8686+ or contributory patent infringement, then any patent licenses
8787+ granted to You under this License for that Work shall terminate
8888+ as of the date such litigation is filed.
8989+9090+ 4. Redistribution. You may reproduce and distribute copies of the
9191+ Work or Derivative Works thereof in any medium, with or without
9292+ modifications, and in Source or Object form, provided that You
9393+ meet the following conditions:
9494+9595+ (a) You must give any other recipients of the Work or
9696+ Derivative Works a copy of this License; and
9797+9898+ (b) You must cause any modified files to carry prominent notices
9999+ stating that You changed the files; and
100100+101101+ (c) You must retain, in the Source form of any Derivative Works
102102+ that You distribute, all copyright, patent, trademark, and
103103+ attribution notices from the Source form of the Work,
104104+ excluding those notices that do not pertain to any part of
105105+ the Derivative Works; and
106106+107107+ (d) If the Work includes a "NOTICE" text file as part of its
108108+ distribution, then any Derivative Works that You distribute must
109109+ include a readable copy of the attribution notices contained
110110+ within such NOTICE file, excluding those notices that do not
111111+ pertain to any part of the Derivative Works, in at least one
112112+ of the following places: within a NOTICE text file distributed
113113+ as part of the Derivative Works; within the Source form or
114114+ documentation, if provided along with the Derivative Works; or,
115115+ within a display generated by the Derivative Works, if and
116116+ wherever such third-party notices normally appear. The contents
117117+ of the NOTICE file are for informational purposes only and
118118+ do not modify the License. You may add Your own attribution
119119+ notices within Derivative Works that You distribute, alongside
120120+ or as an addendum to the NOTICE text from the Work, provided
121121+ that such additional attribution notices cannot be construed
122122+ as modifying the License.
123123+124124+ You may add Your own copyright statement to Your modifications and
125125+ may provide additional or different license terms and conditions
126126+ for use, reproduction, or distribution of Your modifications, or
127127+ for any such Derivative Works as a whole, provided Your use,
128128+ reproduction, and distribution of the Work otherwise complies with
129129+ the conditions stated in this License.
130130+131131+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132132+ any Contribution intentionally submitted for inclusion in the Work
133133+ by You to the Licensor shall be under the terms and conditions of
134134+ this License, without any additional terms or conditions.
135135+ Notwithstanding the above, nothing herein shall supersede or modify
136136+ the terms of any separate license agreement you may have executed
137137+ with Licensor regarding such Contributions.
138138+139139+ 6. Trademarks. This License does not grant permission to use the trade
140140+ names, trademarks, service marks, or product names of the Licensor,
141141+ except as required for reasonable and customary use in describing the
142142+ origin of the Work and reproducing the content of the NOTICE file.
143143+144144+ 7. Disclaimer of Warranty. Unless required by applicable law or
145145+ agreed to in writing, Licensor provides the Work (and each
146146+ Contributor provides its Contributions) on an "AS IS" BASIS,
147147+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148148+ implied, including, without limitation, any warranties or conditions
149149+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150150+ PARTICULAR PURPOSE. You are solely responsible for determining the
151151+ appropriateness of using or redistributing the Work and assume any
152152+ risks associated with Your exercise of permissions under this License.
153153+154154+ 8. Limitation of Liability. In no event and under no legal theory,
155155+ whether in tort (including negligence), contract, or otherwise,
156156+ unless required by applicable law (such as deliberate and grossly
157157+ negligent acts) or agreed to in writing, shall any Contributor be
158158+ liable to You for damages, including any direct, indirect, special,
159159+ incidental, or consequential damages of any character arising as a
160160+ result of this License or out of the use or inability to use the
161161+ Work (including but not limited to damages for loss of goodwill,
162162+ work stoppage, computer failure or malfunction, or any and all
163163+ other commercial damages or losses), even if such Contributor
164164+ has been advised of the possibility of such damages.
165165+166166+ 9. Accepting Warranty or Additional Liability. While redistributing
167167+ the Work or Derivative Works thereof, You may choose to offer,
168168+ and charge a fee for, acceptance of support, warranty, indemnity,
169169+ or other liability obligations and/or rights consistent with this
170170+ License. However, in accepting such obligations, You may act only
171171+ on Your own behalf and on Your sole responsibility, not on behalf
172172+ of any other Contributor, and only if You agree to indemnify,
173173+ defend, and hold each Contributor harmless for any liability
174174+ incurred by, or claims asserted against, such Contributor by reason
175175+ of your accepting any such warranty or additional liability.
176176+177177+ END OF TERMS AND CONDITIONS
178178+179179+ APPENDIX: How to apply the Apache License to your work.
180180+181181+ To apply the Apache License to your work, attach the following
182182+ boilerplate notice, with the fields enclosed by brackets "[]"
183183+ replaced with your own identifying information. (Don't include
184184+ the brackets!) The text should be enclosed in the appropriate
185185+ comment syntax for the file format. We also recommend that a
186186+ file or class name and description of purpose be included on the
187187+ same "printed page" as the copyright notice for easier
188188+ identification within third-party archives.
189189+190190+ Copyright [yyyy] [name of copyright owner]
191191+192192+ Licensed under the Apache License, Version 2.0 (the "License");
193193+ you may not use this file except in compliance with the License.
194194+ You may obtain a copy of the License at
195195+196196+ http://www.apache.org/licenses/LICENSE-2.0
197197+198198+ Unless required by applicable law or agreed to in writing, software
199199+ distributed under the License is distributed on an "AS IS" BASIS,
200200+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201201+ See the License for the specific language governing permissions and
202202+ limitations under the License.
···11+Dual MIT/Apache-2.0 License
22+33+Copyright (c) 2025 QuietEngineer <qtengineer@proton.me>
44+55+Except as otherwise noted in individual files, this software is licensed under the MIT license (<http://opensource.org/licenses/MIT>), or the Apache License, Version 2.0 (<http://www.apache.org/licenses/LICENSE-2.0>).
66+77+Downstream projects and end users may chose either license individually, or both together, at their discretion. The motivation for this dual-licensing is the additional software patent assurance provided by Apache 2.0.
+4
README.md
···11+# PDSAdmin
22+33+A go implementation of the pdsadmin shell scripts from [bluesky-social](https://github.com/bluesky-social/pds).
44+Implemented commands try to be a drop in replacement.
+78
cmd/createInviteCode.go
···11+package cmd
22+33+import (
44+ "bytes"
55+ "encoding/json"
66+ "fmt"
77+ "io"
88+ "net/http"
99+ "os"
1010+1111+ "github.com/spf13/cobra"
1212+ "github.com/spf13/viper"
1313+)
1414+1515+type ServerCreateInviteCode_Input struct {
1616+ UseCount int `json:"useCount"`
1717+}
1818+1919+type ServerCreateInviteCode_Output struct {
2020+ Code string `json:"code"`
2121+}
2222+2323+var number *int
2424+2525+// createInviteCodeCmd represents the createInviteCode command
2626+var createInviteCodeCmd = &cobra.Command{
2727+ Use: "create-invite-code",
2828+ Short: "Create a new invite code",
2929+ Example: "pdsadmin create-invite-code",
3030+ Args: cobra.NoArgs,
3131+ Run: func(cmd *cobra.Command, args []string) {
3232+ if *number < 1 {
3333+ fmt.Println("number must be >=1")
3434+ os.Exit(1)
3535+ }
3636+ body := ServerCreateInviteCode_Input{
3737+ UseCount: *number,
3838+ }
3939+ jsonBody, err := json.Marshal(body)
4040+ if err != nil {
4141+ fmt.Printf("could not create json body: %s\n", err)
4242+ os.Exit(1)
4343+ }
4444+ bodyReader := bytes.NewReader(jsonBody)
4545+4646+ req, err := http.NewRequest(http.MethodPost, fmt.Sprintf("https://%s/xrpc/com.atproto.server.createInviteCode", viper.GetString("hostname")), bodyReader)
4747+ if err != nil {
4848+ fmt.Printf("could not create request: %s\n", err)
4949+ os.Exit(1)
5050+ }
5151+ req.Header.Add("Content-Type", "application/json")
5252+ req.SetBasicAuth("admin", viper.GetString("admin_password"))
5353+5454+ client := &http.Client{}
5555+ res, err := client.Do(req)
5656+ if err != nil {
5757+ fmt.Printf("error making http request: %s\n", err)
5858+ os.Exit(1)
5959+ }
6060+ resBody, err := io.ReadAll(res.Body)
6161+ if err != nil {
6262+ fmt.Printf("could not read response body: %s\n", err)
6363+ os.Exit(1)
6464+ }
6565+6666+ var inviteCode ServerCreateInviteCode_Output
6767+ if err := json.Unmarshal(resBody, &inviteCode); err != nil {
6868+ fmt.Printf("could not get invite code: %s\n", err)
6969+ os.Exit(1)
7070+ }
7171+ fmt.Println(inviteCode.Code)
7272+ },
7373+}
7474+7575+func init() {
7676+ rootCmd.AddCommand(createInviteCodeCmd)
7777+ number = createInviteCodeCmd.Flags().IntP("number", "n", 1, "number of times the code can be used")
7878+}
+76
cmd/requestCrawl.go
···11+package cmd
22+33+import (
44+ "bytes"
55+ "encoding/json"
66+ "fmt"
77+ "io"
88+ "net/http"
99+ "os"
1010+ "strings"
1111+1212+ "github.com/spf13/cobra"
1313+ "github.com/spf13/viper"
1414+)
1515+1616+type SyncRequestCrawl_Input struct {
1717+ // hostname: Hostname of the current service (eg, PDS) that is requesting to be crawled.
1818+ Hostname string `json:"hostname"`
1919+}
2020+2121+// requestCrawlCmd represents the requestCrawl command
2222+var requestCrawlCmd = &cobra.Command{
2323+ Use: "request-crawl",
2424+ Short: "Request a crawl from a relay host",
2525+ Example: `pdsadmin request-crawl bsky.network
2626+pdsadmin request-crawl bsky.network,second-relay.example.com`,
2727+ Args: cobra.MaximumNArgs(1),
2828+ Run: func(cmd *cobra.Command, args []string) {
2929+ var relayHosts []string
3030+ if len(args) == 1 {
3131+ relayHosts = strings.Split(args[0], ",")
3232+ } else {
3333+ relayHosts = viper.GetStringSlice("crawlers")
3434+ }
3535+ if len(relayHosts) == 0 {
3636+ fmt.Println("ERROR: missing RELAY HOST parameter")
3737+ os.Exit(1)
3838+ }
3939+4040+ client := &http.Client{}
4141+ for _, host := range relayHosts {
4242+ if host == "" {
4343+ continue
4444+ }
4545+ fmt.Printf("Requesting crawl from %s\n", host)
4646+ if !strings.HasPrefix(host, "https:") && !strings.HasPrefix(host, "http:") {
4747+ host = fmt.Sprintf("https://%s", host)
4848+ }
4949+ body := SyncRequestCrawl_Input{
5050+ Hostname: viper.GetString("hostname"),
5151+ }
5252+ jsonBody, err := json.Marshal(body)
5353+ if err != nil {
5454+ fmt.Printf("could not create json body: %s\n", err)
5555+ continue
5656+ }
5757+ bodyReader := bytes.NewReader(jsonBody)
5858+5959+ res, err := client.Post(fmt.Sprintf("%s/xrpc/com.atproto.sync.requestCrawl", host), "application/json", bodyReader)
6060+ if err != nil {
6161+ fmt.Printf("error making http request: %s\n", err)
6262+ continue
6363+ }
6464+6565+ if _, err := io.ReadAll(res.Body); err != nil {
6666+ fmt.Printf("could not read response body: %s\n", err)
6767+ continue
6868+ }
6969+ }
7070+ fmt.Println("done")
7171+ },
7272+}
7373+7474+func init() {
7575+ rootCmd.AddCommand(requestCrawlCmd)
7676+}