aboutsummarylogtreecommitdiffstats
path: root/up
blob: 00a905a91176c4e1f184bb386e70a110570dea73 (plain)
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
#!/usr/bin/env bash

# x0.at paste client

# Vars

AUTOCOPY=1

# Functions

function usage(){
  filename=$(basename "$0")
  cat <<- EOF
x0.at paste client

Usage :

# Upload a file
$ $filename [OPTIONS] file
$ cat file.ext | $filename [OPTIONS]

# Upload text
$ echo "upaste rocks" | up
$ up
upaste
really
rocks
C-d C-d

Options :
    -h    Print this usage
    -a    Disable autocopy in clipboard
    -t    Set extension, without dot
EOF
}

function upload(){

  # Set vars
  local args
  local url

  if [ -z "$1" ]
  then
    # If argument is empty, upload stdin
    local file="file=@-"
  else
    # Else upload filename
    local file="file=@\"$1\""
  fi

  if [ -z "$EXTENSION" ]
  then
    local extension="filename=$EXTENSION"
  fi

  args="$file;$extension"

  url=$(curl -s -F "$args" 'https://x0.at/')
  return "$url"
}

# Arguments

function arguments(){
  while getopts "hat:" arg "${args[@]}"
  do
    case $arg in
      a)
        AUTOCOPY=0
        ;;
      h)
        usage
        exit
        ;;
      t)
        EXTENSION=${OPTARG}
        ;;
      *)
        usage
        exit 1
        ;;
    esac
  done
  shift $((OPTIND-1))
}

function autocopy(){
  # If xorg or wayland is running
  if grep 'DISPLAY' <(env) &> /dev/null
  then
    # If xclip is installed
    if which xclip &> /dev/null
    then
      xclip "$1"
    # Else if wl-clipboard is installed
    elif which wl-copy &> /dev/null
    then
      wl-copy -p "$1"
    fi
  fi
}

function is_file(){
  # Test if first argument is an existing file
  if [ ! -f "$1" ]
  then
    echo "File \"$1\" does not exist or is not a regular file"
    exit 2
  fi
}

function main(){

  # Vars
  local url

  # Getopts
  arguments "$@"

  # If no piped data
  if [ -t 0 ]
  then
  
    # If no argument, read stdin and save url
    if [ -z "$1" ]
    then
      url=$(upload)
      # Force a newline at the end
      echo -e "\n"
    # Else upload argument and save url
    else
      # Test if file exists and is a regular file
      if [ -n "$1" ]
      then
        is_file "$1"
      fi
      url=$(upload "$1")
    fi
  
  # Else if piped data
  else
    # Test if argument exists
    if [ -n "$1" ]
    then
      echo "Warning: ignoring file $1..."
    fi
    # Upload and save url
    url=$(upload)
  fi
  
  # Print url
  echo "$url"

  # If autocopy is set
  if [ "$AUTOCOPY" == "1" ]
  then
    # Autocopy url
    autocopy "$url"
  fi
}

# Main

args=( "$@" )
main "${args[@]}"