1
0
Fork 0
mirror of https://tildegit.org/envs/pb.git synced 2025-04-03 13:55:52 +00:00

merge upstream

Signed-off-by: creme <creme@envs.net>
This commit is contained in:
creme 2022-11-26 21:44:45 +01:00
commit d29380b086
No known key found for this signature in database
GPG key ID: C147C3B7FBDF08D0
5 changed files with 122 additions and 175 deletions

View file

@ -1,42 +1,29 @@
PREFIX ?= /usr/local # Install to /usr/local unless otherwise specified, such as `make PREFIX=/app`
BINDIR ?= $(PREFIX)/bin PREFIX?=/usr/local
MANDIR ?= $(PREFIX)/share/man
# Attempt to find bash completion dir in order of preference # What to run to install various files
ifneq ($(wildcard /etc/bash_completion.d/.),) INSTALL?=install
CPLDIR ?= /etc/bash_completion.d # Run to install the actual binary
endif INSTALL_PROGRAM=$(INSTALL) -Dm 755
# Run to install application data, with differing permissions
INSTALL_DATA=$(INSTALL) -Dm 644
HAS_BREW := $(shell command -v brew 2> /dev/null) # Directories into which to install the various files
ifdef HAS_BREW bindir=$(DESTDIR)$(PREFIX)/bin
CPLDIR ?= $$(brew --prefix)/etc/bash_completion.d sharedir=$(DESTDIR)$(PREFIX)/share
endif
HAS_PKGCONFIG := $(shell command -v pkg-config 2> /dev/null) help:
ifdef HAS_PKGCONFIG @echo "targets:"
CPLDIR ?= $$(pkg-config --variable=completionsdir bash-completion 2> /dev/null) @awk -F '#' '/^[a-zA-Z0-9_-]+:.*?#/ { print $0 }' $(MAKEFILE_LIST) \
endif | sed -n 's/^\(.*\): \(.*\)#\(.*\)/ \1|-\3/p' \
| column -t -s '|'
install: install: pb pb.1 # system install
@echo Installing the executable to $(BINDIR) $(INSTALL_PROGRAM) pb $(bindir)/pb
@install -D -m 0755 pb $(BINDIR)/pb $(INSTALL_DATA) pb.1 $(sharedir)/man/man1/pb.1
@echo Installing the manual page to $(MANDIR)/man1
@install -D -m 0644 pb.1 $(MANDIR)/man1/pb.1
ifeq ($(CPLDIR),)
@echo Installing the command completion to $(CPLDIR)
@mkdir -p $(CPLDIR)
@cp -f pb.d $(CPLDIR)/pb
@chmod 644 $(CPLDIR)/pb
endif
uninstall: uninstall: # system uninstall
@echo Removing the executable from $(BINDIR) rm -f $(bindir)/pb
@rm -f $(BINDIR)/pb rm -f $(sharedir)/man/man1/pb.1
@echo Removing the manual page from $(MANDIR)/man1
@rm -f $(BINDIR)/man1/pb.1
ifeq ($(CPLDIR),)
@echo Removing the command completion from $(CPLDIR)
@rm -f $(CPLDIR)/pb
endif
.PHONY: install uninstall .PHONY: install uninstall help

View file

@ -1,4 +1,4 @@
pb ![calver](https://img.shields.io/badge/calver-2020.01.20-22bfda.svg?style=flat-square) ![status](https://img.shields.io/badge/status-working-green.svg?style=flat-square) ![license](https://img.shields.io/badge/license-GPL3-blue.svg?style=flat-square) pb ![calver](https://img.shields.io/badge/calver-2022.11.03-22bfda.svg?style=flat-square) [![Build Status](https://drone.tildegit.org/api/badges/tomasino/pb/status.svg)](https://drone.tildegit.org/tomasino/pb) ![license](https://img.shields.io/badge/license-GPL3-blue.svg?style=flat-square)
------ ------
**pb** is a helper utility for using 0x0 pastebin services **pb** is a helper utility for using 0x0 pastebin services
@ -33,33 +33,50 @@ Upload a file to a different pastebin endpoint
pb -s http://0x0.st scores.txt pb -s http://0x0.st scores.txt
``` ```
Shorten a URL Re-upload an image from the web
```bash ```bash
pb -u https://google.com curl -s https://tildegit.org/_/static/img/gitea-lg.png | pb -e "png"
``` ```
### Options ### Options
```bash ```bash
-h Show this help -h | --help) Show this help
-v Show current version number -v | --version) Show current version number
-f Explicitly interpret stdin as filename -f | --file) Explicitly interpret stdin as filename
-c Pretty color output -c | --color) Pretty color output
-u Shorten URL -s | --server server_address) Use alternative pastebin server address
-s server_address Use alternative pastebin server address -e | --extension bin_extension) Specify file extension used in the upload
``` ```
### Install ### Install
`sudo make install` On GNU systems:
_Note: On systems without admin access the binary can be run directly from the ```sh
git repo, but will lack `man` support and command completion._ sudo make install
```
On BSD systems:
The man-path `/usr/local/share/man` is not indexed by default on openbsd. Using the `/usr` prefix works around this issue.
```sh
doas make PREFIX=/usr install
```
### Uninstall ### Uninstall
`sudo make uninstall` ```sh
sudo make uninstall
```
On BSD systems:
```sh
doas make PREFIX=/usr uninstall
```
## Contributing ## Contributing

140
pb
View file

@ -1,16 +1,17 @@
#!/bin/sh #!/bin/sh
# init variables # init variables
version="v2020.01.20" version="v2022.11.03"
ENDPOINT="https://envs.sh" ENDPOINT="https://envs.sh"
flag_options="hvcufs::x" flag_options=":hvcfe:s:"
long_flag_options="help,version,color,file,extension:,server:"
flag_version=0 flag_version=0
flag_help=0 flag_help=0
flag_file=0 flag_file=0
flag_url=0
flag_shortlist=0
flag_colors=0 flag_colors=0
flag_ext=0
data="" data=""
EXT=""
# help message available via func # help message available via func
show_help() { show_help() {
@ -22,12 +23,18 @@ or
Uploads a file or data to the envs.sh 0x0 paste bin Uploads a file or data to the envs.sh 0x0 paste bin
OPTIONAL FLAGS: OPTIONAL FLAGS:
-h Show this help -h | --help) Show this help
-v Show current version number -v | --version) Show current version number
-f Explicitly interpret stdin as filename -f | --file) Explicitly interpret stdin as filename
-c Pretty color output -c | --color) Pretty color output
-u Shorten URL -s | --server server_address) Use alternative pastebin server address
-s server_address Use alternative pastebin server address -e | --extension bin_extension) Specify file extension used in the upload
END
}
show_usage() {
cat > /dev/stdout << END
usage: pb [-hfvcux] [-s server_address] filename
END END
} }
@ -50,60 +57,30 @@ die () {
exit "${code}" exit "${code}"
} }
# is not interactive shell, use stdin
if [ -t 0 ]; then
flag_file=1
else
data="$(cat < /dev/stdin )"
fi
# attempt to parse options or die # attempt to parse options or die
if ! parsed=$(getopt ${flag_options} "$@"); then if ! PARSED_ARGUMENTS=$(getopt -a -n pb -o ${flag_options} --long ${long_flag_options} -- "$@"); then
die "Invalid input" 2 printf "pb: unknown option\\n"
show_usage
exit 2
fi fi
# handle options # For debugging: echo "PARSED_ARGUMENTS is $PARSED_ARGUMENTS"
eval set -- "${parsed}" eval set -- "$PARSED_ARGUMENTS"
while true; do while :
do
case "$1" in case "$1" in
-h) -h | --help) flag_help=1 ; shift ;;
flag_help=1 -v | --version) flag_version=1 ; shift ;;
;; -c | --color) flag_color=1 ; shift ;;
-v) -f | --file) flag_file=1 ; shift ;;
flag_version=1 -e | --extension) flag_ext=1; EXT="$2" ; shift 2 ;;
;; -s | --server) ENDPOINT="$2" ; shift 2 ;;
-c) --) shift; break ;;
flag_colors=1 *) echo "Unexpected option: $1 - this should not happen."
;; show_usage ; die 3 ;;
-f)
flag_file=1
;;
-s)
shift
ENDPOINT="$1"
;;
-u)
flag_url=1
;;
-x)
flag_shortlist=1
;;
--)
shift
break
;;
*)
die "Internal error: $1" 3
;;
esac esac
shift
done done
# if data variable is empty (not a pipe) use params as fallback
if [ -z "$data" ]; then
data="$*"
fi
# display current version # display current version
if [ ${flag_version} -gt 0 ]; then if [ ${flag_version} -gt 0 ]; then
printf "%s\\n" "${version}" printf "%s\\n" "${version}"
@ -116,13 +93,23 @@ if [ ${flag_help} -gt 0 ]; then
die "" 0 die "" 0
fi fi
# shortlist used for bash command completion # is not interactive shell, use stdin
if [ ${flag_shortlist} -gt 0 ]; then if [ -t 0 ]; then
out="-f -v -h -s -c -u" flag_file=1
lsresults="$(ls)" else
die "${out} ${lsresults}" 0 if [ ${flag_ext} -gt 0 ]; then
# short-circuit stdin access to ensure binary data is transferred to curl
curl -sF"file=@-;filename=null.${EXT}" "${ENDPOINT}" < /dev/stdin
exit 0
else
data="$(cat < /dev/stdin )"
fi
fi fi
# if data variable is empty (not a pipe) use params as fallback
if [ -z "$data" ]; then
data="$*"
fi
# Colors # Colors
if [ ${flag_colors} -gt 0 ]; then if [ ${flag_colors} -gt 0 ]; then
@ -135,24 +122,6 @@ else
RESET="" RESET=""
fi fi
# URL shortening reference
# If URL mode detected, process URL shortener and end processing without
# checking for a file to upload to the pastebin
if [ ${flag_url} -gt 0 ]; then
if [ -z "${data}" ]; then
# if no data
# print error message
printf "%sProvide URL to shorten%s\\n" "$ERROR" "$RESET"
else
# shorten URL and print results
result=$(curl -sF"shorten=${data}" "${ENDPOINT}")
printf "%s%s%s\\n" "$SUCCESS" "$result" "$RESET"
fi
die "" 0
fi
if [ ${flag_file} -gt 0 ]; then if [ ${flag_file} -gt 0 ]; then
# file mode # file mode
if [ -z "${data}" ]; then if [ -z "${data}" ]; then
@ -171,8 +140,13 @@ if [ ${flag_file} -gt 0 ]; then
fi fi
# check if file exists # check if file exists
if [ -f "${f}" ]; then if [ -f "${f}" ]; then
# send file to endpoint if [ ${flag_ext} -gt 0 ]; then
result=$(curl -sF"file=@${f}" "${ENDPOINT}") # send file to endpoint masked with new extension
result=$(curl -sF"file=@${f};filename=null.${EXT}" "${ENDPOINT}")
else
# send file to endpoint
result=$(curl -sF"file=@${f}" "${ENDPOINT}")
fi
printf "%s%s%s\\n" "$SUCCESS" "$result" "$RESET" printf "%s%s%s\\n" "$SUCCESS" "$result" "$RESET"
else else
# print error message # print error message
@ -193,7 +167,7 @@ else
printf "%sNo data found for upload. Please try again.%s\\n" "$ERROR" "$RESET" printf "%sNo data found for upload. Please try again.%s\\n" "$ERROR" "$RESET"
else else
# data available # data available
# send data to endpoint, print short url # send data to endpoint
result=$(printf "%s" "${data}" | curl -sF"file=@-;filename=null.txt" "${ENDPOINT}") result=$(printf "%s" "${data}" | curl -sF"file=@-;filename=null.txt" "${ENDPOINT}")
printf "%s%s%s\\n" "$SUCCESS" "$result" "$RESET" printf "%s%s%s\\n" "$SUCCESS" "$result" "$RESET"
fi fi

27
pb.1
View file

@ -1,11 +1,11 @@
.TH PB 1 "20 January 2020" "v2020.01.20" .TH PB 1 "03 November 2022" "v2022.11.03"
.SH NAME .SH NAME
pb \- a helper utility for using 0x0 pastebin services pb \- a helper utility for using 0x0 pastebin services
.SH SYNOPSIS .SH SYNOPSIS
.B pb .B pb
[-fucvh] [-s server_endpoint] [-fucvh] [-s server_endpoint] [-e bin_extension]
.P .P
.SH DESRIPTION .SH DESRIPTION
@ -16,8 +16,8 @@ comes pre-configured with a specific pastebin, the
service endpoint can be overridden. service endpoint can be overridden.
Data input can be provided as an argument or via stdin. Data input can be provided as an argument or via stdin.
The data will be processed as an image, text or URL to The data will be processed as binary or text
be shortened based on the context. based on the context.
Default Server: Default Server:
.B https://envs.sh .B https://envs.sh
@ -31,8 +31,10 @@ Explicitly interpret stdin as filename or names.
.BI -s " server_address" .BI -s " server_address"
Use alternative pastebin server address. Use alternative pastebin server address.
.TP .TP
.B -u .BI -e " bin_extension"
Shorten a URL. Specifes the file extension used in the upload of binary content passed to
.B pb
via standard input.
.TP .TP
.B -c .B -c
Pretty color output. Pretty color output.
@ -65,18 +67,13 @@ Upload a list of files to the pastebin individually
.B pb -s http://0x0.st scores.txt .B pb -s http://0x0.st scores.txt
Upload a file to a different pastebin endpoint Upload a file to a different pastebin endpoint
.TP .TP
.B pb -u 'https://duckduckgo.com' .B curl -s https://some/image/file.png | pb -e "png"
Shorten the URL to envs.sh Download a binary file and re-upload it to the pastebin with an explicit binary
type and extension.
.SH BUGS .SH BUGS
Report issues at the git repository at Report issues at the git repository at
.B https://tildegit.org/tomasino/pb .B https://tildegit.org/tomasino/pb
.SH STANDARDS
The
.B pb
utility is compliant with the IEEE Std 1003.1-2008 ("POSIX.1")
specification.
.SH AUTHOR .SH AUTHOR
James Tomasino <tomasino (at) lavabit (dot) com> James Tomasino <james (at) tomasino (dot) org>

28
pb.d
View file

@ -1,28 +0,0 @@
#!/usr/bin/env bash
_pb() {
# Get basic autocomplete commands from the function itself
local helplist
helplist=$(pb -x)
# Combine all the lists for autocomplete
local cur
cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $( compgen -W "$helplist" -- "$cur" ) )
}
# Detect if current shell is ZSH, and if so, load this file in bash
# compatibility mode.
if [ -n "$ZSH_VERSION" ]; then
autoload bashcompinit
bashcompinit
fi
complete -o default -o nospace -F _pb pb
# The following are necessary only for Cygwin, and only are needed
# when the user has tab-completed the executable name and consequently
# included the '.exe' suffix.
if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then
complete -o default -o nospace -F _pb pb.exe
fi