aboutsummaryrefslogtreecommitdiff
path: root/src/lib.lisp
blob: d990b2238e47af35bac5254e5c18464f0f62675f (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
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
601
602
603
604
605
606
607
608
609
610
;;;; main.lisp -- oneliners.cli entrypoint

(defpackage oneliners.cli
  (:use :cl)
  (:local-nicknames (#:api #:oneliners.api-client)
                    (#:a #:alexandria)
                    (#:rl #:cl-readline)))

(in-package :oneliners.cli)

;;; CONFIG AND RESULTS FILE LOCATIONS

(defvar *config* nil
  "A configuration plist")

(defvar *ol-output-timeout* 1)

(defun valid-config-p (config)
  (and (listp config)
       (evenp (length config))
       (stringp (getf config :host))
       t))

(defun write-config-to-disk ()
  (let ((conf-file (config-file)))
    (ensure-directories-exist conf-file)
    (with-open-file (out conf-file :direction :output :if-exists :supersede)
      (print *config* out))))

(defun make-config (&key host api-token editor (shell "bash"))
  (append (when host (list :host host))
          (when api-token (list :api-token api-token))
          (list :shell shell)))

(defun make-fresh-config ()
  (format t "No configuration file has been found. Running Setup~%~%")
  (setf *config*
        (make-config
         :host (prompt "Oneliner Instance Host: "
                       :prefill "https://api.oneliners.wiki")
         :shell (prompt "With which shell should commands be run: "
                        :prefill "bash")))
  (write-config-to-disk)
  (format t "Configuration has been written to ~a~%. Edit this at any time.~%~%"
          (config-file)))

(defun fetch-config-from-disk ()
  (let ((conf
          (uiop:with-safe-io-syntax ()
            (uiop:read-file-form (config-file)))))
    (assert (valid-config-p conf) () "Invalid configuration file")
    (setf *config* conf)))

(defun ensure-config ()
  (unless (uiop:file-exists-p (config-file))
    (make-fresh-config))
  (fetch-config-from-disk))

(defun host () (getf *config* :host))
(defun api-token () (getf *config* :api-token))
(defun (setf api-token) (newval)
  (setf (getf *config* :api-token) newval))
(defun get-shell ()
  (getf *config* :shell))
(defun contributor-handle () (getf *config* :handle))
(defun (setf contributor-handle) (newval)
  (setf (getf *config* :handle) newval))

(defun config-file ()
  (merge-pathnames ".config/oneliners.config" (user-homedir-pathname)))

(defun last-search-file ()
  (merge-pathnames ".last_oneliners_search" (user-homedir-pathname)))

(defun cached-oneliners-file ()
  (merge-pathnames ".cached_oneliners" (user-homedir-pathname)))

(defun wipe-cache ()
  (uiop:delete-file-if-exists (cached-oneliners-file))
  (uiop:delete-file-if-exists (last-search-file )))

(defun merge-into-cache (ols)
  (if  (uiop:file-exists-p (cached-oneliners-file))
       (let ((cached (with-open-file (input (cached-oneliners-file)) (read input))))
         (with-open-file (out (cached-oneliners-file) :direction :output :if-exists :supersede)
           (print (nconc
                   ols
                   (remove-if
                    (lambda (old)
                      (member (getf old :id) ols :test 'equal :key (lambda (x) (getf x :id))))
                    cached))
                  out)))
       (with-open-file (out (cached-oneliners-file) :direction :output :if-exists :supersede)
         (print ols out))))

;;; UTILITIES 
(defun make-temp-file-name ()
  (namestring
   (merge-pathnames (format nil "~a" (gensym "oneliners")) (uiop:temporary-directory))))

(defun string-from-editor (&optional contents)
  (let ((filename (make-temp-file-name)))
    (when contents (a:write-string-into-file  contents filename :if-exists :supersede))
    (unwind-protect 
         (magic-ed:magic-ed filename :eval nil :output :string)
      (uiop:delete-file-if-exists filename))))

(defun executable-on-system-p (name)
  "A hack that heuristically determins whether or not an executable
with the provided name is on the system. It is not perfect. It
consults the environment PATH, and looks for the command in any of
the directories that appear in the value of that variable."
  #+unix
  (loop for path in (str:split ":" (uiop:getenv "PATH"))
        for directory = (cons :absolute
                              (cdr (str:split "/" path)))
          thereis (uiop:file-exists-p
                   (make-pathname :name name :directory directory))))

(defun tags-from-oneliner (oneliner)
  (remove-if-not #'executable-on-system-p (ppcre:split " +" oneliner)))

(rl:register-hook :signal (lambda () (uiop:quit)))

(defun prompt (prompt
               &key
                 (expect (constantly t))
                 retry-text
                 (prefill ""))
  ;; register a prefill hook
  (rl:register-hook
   :pre-input
   (lambda ()
     (rl:insert-text prefill)
     (rl:redisplay)))
  (unwind-protect 
       (loop
         with prompt-text = prompt
         with should-retry-p = t
         while should-retry-p
         for line = (rl:readline :prompt prompt-text)
         when (funcall expect line)
           do (setf should-retry-p nil)
         when retry-text
           do (setf prompt-text retry-text)
         finally (return line))
    ;; unregisters the hook.
    (rl:register-hook :pre-input nil)))

(defun cached-result (n &optional idp)
  (if idp
      (when (uiop:file-exists-p (cached-oneliners-file))
        (let ((contents (with-open-file (input (cached-oneliners-file)) (read input))))
          (find n contents :key (lambda (x) (getf x :id)))))
      (when (uiop:file-exists-p (last-search-file))
        (let ((contents (with-open-file (input (last-search-file)) (read input)))) 
          (nth n contents)))))

(defmacro with-cached-result ((olvar n &optional idp) &body body)
  (a:with-gensyms (nvar idpvar) 
    `(let ((,nvar ,n)
           (,idpvar ,idp))
       (assert (plusp ,nvar) ()  "Item number must be 1 or greater")
       (a:if-let (,olvar (if ,idpvar (cached-result ,nvar t) (cached-result (1- ,nvar))))
         (progn ,@body)
         (format t "Could not find the oneliner specified by ~a~%" ,nvar)))))

(defun print-item-explanation (number)
  (with-cached-result (ol number)
    (when (getf ol :explanation)
      (princ #\newline)
      (princ (getf ol :explanation)))))

;;; API REQUEST FUNCTIONS

(defun flag-item (item-number &optional idp)
  (with-cached-result (ol item-number idp)
    (ensure-config)
    (api:request-with
        (:host (host))
      (api:put--oneliner-entry-flag (getf ol :id) :token (api-token) :value "true"))))

(defun unflag-item (item-number &optional idp)
  (with-cached-result (ol item-number idp)
    (ensure-config)
    (api:request-with
        (:host (host))
      (api:put--oneliner-entry-flag (getf ol :id) :token (api-token) :value "false"))))

(defun lock-item (item-number &optional idp)
  (with-cached-result (ol item-number idp)
    (ensure-config)
    (api:request-with
        (:host (host))
      (api:put--oneliner-oneliner-locked (getf ol :id) :token (api-token) :value "true"))))

(defun unlock-item (item-number &optional idp)
  (with-cached-result (ol item-number idp)
    (ensure-config)
    (api:request-with
        (:host (host))
      (api:put--oneliner-oneliner-locked (getf ol :id) :token (api-token) :value "false"))))

(defun collect-positional-arguments (oneliner)
  (remove-duplicates 
   (sort 
    (ppcre:all-matches-as-strings "#[1-9][0-9]*" oneliner)
    #'string<)
   :test #'equal))

(defun collect-named-arguments (oneliner)
  (remove-duplicates 
   (ppcre:all-matches-as-strings "#[A-Za-z][A-Za-z0-9_]*" oneliner)
   :test #'equal))

(defun handle-run-oneliner (ol &optional clip)
  (if clip
      (progn (trivial-clipboard:text ol)
             (format t "Copied oneliner to clipboard~%"))
      (progn
        (ensure-config)
        (format t "Attempting to run:~%")
        (princ ol)
        (princ #\newline)
        (princ #\newline)
        (run-with-shell ol  :shell-name (or (get-shell) "bash")))))

(defun bind-vars-and-run-oneliner (ol args &optional force-clip)
  (let* ((oneliner (getf ol :oneliner))
         (runstyle (getf ol :runstyle))
         (pos-args (collect-positional-arguments oneliner))
         (named-args (collect-named-arguments oneliner)))
    
    (when  (or (not (getf ol :isflagged))
               (y-or-n-p "This oneliner is flagged. Are you sure you want to run it?"))
      ;; substitute positional args
      (loop for param in pos-args
            for arg in args
            do (setf oneliner (str:replace-all param arg oneliner)))
      ;; substitute named args 
      (setf args
            (mapcar (lambda (s) (str:split "=" s))
                    (nthcdr (length pos-args) args)))
      (loop for var in named-args
            for bound = (assoc (subseq var 1) args :test #'equal)
            when bound
              do (setf oneliner
                       (str:replace-all var (second bound) oneliner)))
      
      (handle-run-oneliner oneliner (or force-clip (equalp runstyle "manual"))))))

(defun run-item (item-number args &key by-id force-clip (timeout nil timeout-p))
  (let ((*ol-output-timeout* (if timeout-p timeout *ol-output-timeout*))
        (found nil)) 
    (with-cached-result (ol item-number by-id)
      (setf found t)
      (bind-vars-and-run-oneliner ol args force-clip))
    (when (and by-id (not found))
      (format t "Trying to fetch that oneliner with id ~a from the wiki.~%" item-number)
      (a:if-let ((ol 
                  (api:request-with (:host (host))
                    (jonathan:parse 
                     (api::get--oneliner-entry item-number)))))
        (progn  (bind-vars-and-run-oneliner ol args force-clip)
                (merge-into-cache (list ol)))
        (format t "Still couldn't find it. Is something wrong?")))))

(defun valid-oneliner-string-p (string)
  (and (not (find #\newline string))
       (tags-from-oneliner string)))

(defun valid-brief-description-p (string)
  (<= (length string) 72))

(defun valid-runstyle-p (string)
  (member string '("auto" "manual") :test 'equalp))

(defun aliases ()
  (getf *config* :aliases))

(defun (setf aliases) (newval)
  (setf  (getf *config* :aliases) newval))

(defun alias-item (item alias)
  (with-cached-result (ol item)
    (ensure-config)
    (a:if-let (found (assoc alias (aliases)))
      (setf (cdr found) ol)
      (push (cons alias ol) (aliases)))
    (write-config-to-disk)))

(defun lookup-alias (alias)
  (cdr (assoc alias (aliases))))

(defun run-alias (alias args &optional force-clip)
  (ensure-config)
  (a:when-let (ol (lookup-alias alias))
    (bind-vars-and-run-oneliner ol args force-clip)))

(defun add-new-oneliner ()
  (ensure-config)
  (assert (api-token) () "Cannot add a oneliner without an api token.")
  (let* ((oneliner
           (prompt "Oneliner: "
                   :expect 'valid-oneliner-string-p
                   :retry-text "Oneliners must contain at least one command: "))
         (init-tags
           (tags-from-oneliner oneliner))
         (brief
           (prompt "Brief Description: "
                   :expect 'valid-brief-description-p
                   :retry-text "Too long. Must be <= 72 characters: "))
         (tags
           (progn
             (format t "Tags include: ~{~a ~}~%" init-tags)
             (append init-tags
                     (ppcre:split " +"
                                  (prompt "More tags here, or Enter to skip: ")))))
         (runstyle
           (string-upcase
            (prompt "Runstyle (auto or manual): "
                    :expect 'valid-runstyle-p
                    :retry-text "Must be (auto or manual): "
                    :prefill "auto")))
         (explanation
           (when (y-or-n-p "Provide an explanation?")
             (string-from-editor
              (format nil "~a~%~%" oneliner)))))
    (api:request-with
        (:host (host)
         :body (jonathan:to-json
                (list :oneliner oneliner
                      :tags tags
                      :brief brief
                      :explanation explanation
                      :runstyle runstyle))
         :content-type "application/json")
      (api:post--oneliner :token (api-token))
      (format t "Added~%"))))

(defun edit-item (n &optional idp)
  (ensure-config)
  (assert (api-token) () "Cannot edit a oneliner without an api token.")
  (with-cached-result (ol n idp)
    (let* ((oneliner
             (prompt "Oneliner: "
                     :expect 'valid-oneliner-string-p
                     :retry-text "Oneliners must contain at least one command: "
                     :prefill (getf ol :oneliner)))
           (brief
             (prompt "Brief Description: "
                     :expect 'valid-brief-description-p
                     :retry-text "Too long. Must be <= 72 characters: "
                     :prefill (getf ol :brief)))
           (init-tags
             (tags-from-oneliner oneliner))
           (tags
             (progn
               (format t "Tags include: ~{~a ~}~%" init-tags)
               (append init-tags
                       (ppcre:split " +"
                                    (prompt "More tags here, or Enter to skip: "
                                            :prefill (str:join " "
                                                               (set-difference
                                                                (getf ol :tags)
                                                                init-tags
                                                                :test 'equal)))))))
           (runstyle
             (string-upcase
              (prompt "Runstyle (auto or manual): "
                      :expect 'valid-runstyle-p
                      :retry-text "Must be (auto or manual): "
                      :prefill (getf ol :runstyle))))
           (explanation
             (when (y-or-n-p "Provide an explanation?")
               (string-from-editor (getf ol :explanation)))))
      (let ((new-item
              (list :oneliner oneliner
                    :tags tags
                    :brief brief
                    :explanation explanation
                    :runstyle runstyle))) 
        (api:request-with
            (:host (host)
             :body (jonathan:to-json
                    new-item)
             :content-type "application/json")
          (api:patch--oneliner-entry-edit (getf ol :id) :token (api-token))
          (if idp 
              (update-history-item n new-item)
              (update-cached-item new-item))
          (format t "OK~%"))))))

(defun request-invite-code ()
  (ensure-config)
  (api:request-with
      (:host (host))
    (let ((invite (jonathan:parse (api:post--invite :token (api-token)))))
      (format t "Invite Code: ~a~%Expires: ~a~%"
              (getf invite :code)
              (getf invite :expires)))))

(defun login (user pass)
  (ensure-config)
  (a:when-let (response (jonathan:parse
                         (api:request-with
                             (:host (host)
                              :body (jonathan:to-json (list :password pass :handle user))
                              :content-type "application/json") 
                           (api:post--access))))
    (setf (api-token) (getf response :token)
          (contributor-handle) user)
    (write-config-to-disk)
    (format t "Access token written to ~a~%You may now make contributions to the wiki!.~%"
            (config-file))))

(defun change-pw (current new repeated)
  (unless (equal new repeated)
    (error "The new password doesn't match the repeated value. Double check."))
  (ensure-config)
  (api:request-with
      (:host (host))
    (api:put--contributor-who-password (contributor-handle)
                                       :token (api-token)
                                       :value new
                                       :repeated new
                                       :current current)))

(defparameter +agree-to-the-unlicense+
  "By creating this contributor account, I agree that my contributions
  be released into the public domain, for the benefit of the public at
  large, and to the detriment of my heirs and successors. I intend
  this dedication to be an overt act of relinquishment in perpetuity
  of all present and future rights to my contributions under software
  copyright law copyright law.  More specifically, I agree to release all of my
  contributions using The Unlicense. (see https://unlicense.org/)")


(defun prompt-for-signature ()
  (if (y-or-n-p "Provide a contributor signature about yourself? ")
      (prompt "Go ahead: ")
      ""))

(defun change-signature ()
  (let ((new-sig
          (prompt-for-signature)))
    (ensure-config)
    (api:request-with
        (:host (host)
         :body (jonathan:to-json (list :signature new-sig))
         :content-type "application/json")
      (api:put--contributor-who-signature (contributor-handle) :token (api-token))
      (format t "Your signature was changed.~%"))))

(defun print-contributor (contributor)
  (format t "~20a ~@[-- ~a~]~%"
          (getf contributor :handle)
          (getf contributor :signature)))

(defun show-contributor (name)
  (ensure-config)
  (api:request-with
      (:host (host))
    (a:when-let (contributor 
                 (api:get--contributor-who name))
      (print-contributor (jonathan:parse  contributor)))))

(defun redeem-invite (token name pass) 
  (ensure-config )
  (when (yes-or-no-p +agree-to-the-unlicense+)
    (api:request-with
        (:host (host)
         :body (jonathan:to-json (list :handle name
                                       :password1 pass :password2 pass
                                       :signature (prompt-for-signature)))
         :content-type "application/json")
      (api:post--invite-redeem-code token)
      (format t "Account made for ~a. You may log in now~%" name))))

;;TODO: check this .. shouldnt access be a username???
(defun revoke-access ()
  (ensure-config)
  (api:request-with
      (:host (host))
    (api:delete--access-access  (api-token) :token (api-token))
    (format t "You were logged out~%")))

(defun update-history-item (n item)
  (when (uiop:file-exists-p (last-search-file))
    (let* ((results (with-open-file (input (last-search-file)) (read input)))
           (ol (nth (1- n) results)))
      (when ol 
        (setf (nth (1- n) results) (append item ol))
        (cache-search-results-to-last-search-file results))))
  (merge-into-cache (list item)))

(defun update-cached-item (item)
  (let* ((history (with-open-file (input (last-search-file)) (read input)))
         (pos (position (getf item :id) history :key (lambda (x) (getf item :id)))))
    (if pos
        (update-history-item (1+ pos) item)
        (merge-into-cache (list item)))))

(defun cache-search-results-to-last-search-file (results)
  (with-open-file (output (last-search-file) :direction :output :if-exists :supersede)
    (print results output))
  (merge-into-cache results))

(defun print-oneliner-result-for-user (number oneliner)
  (dotimes (n 80) (princ #\_))
  (terpri)
  (format t "~3a~a~a~a [~a] ~a"
          number 
          (if (getf oneliner :isflagged)
              "⚠" " ")
          (if (getf oneliner :islocked)
              "🔒" " ")
          (if  (equalp "manual" (getf oneliner :runstyle))
               "📋" " ")
          (getf oneliner :id)
          (getf oneliner :brief))
  (format t "~%        by: ~12a tags: ~{~a~^ ~}"  (getf oneliner :createdby) (getf oneliner :tags))
  (format t "~%~%        ~a~%~%" (getf oneliner :oneliner)))

(defun cache-and-print-search-response (response)
  (cache-search-results-to-last-search-file
   (loop for number from 1
         for oneliner in (getf (jonathan:parse response) :oneliners)
         collect oneliner
         do (print-oneliner-result-for-user number oneliner))))

(defun newest-oneliners (&optional limit)
  (ensure-config)
  (api:request-with
      (:host (host))
    (let ((response
            (if limit
                (api:get--oneliners-newest :limit limit)
                (api:get--oneliners-newest))))
      (cache-and-print-search-response response))))

(defun all-flagged-oneliners (&optional limit)
  (ensure-config)
  (api:request-with
      (:host (host))
    (let ((response 
            (if limit
                (api:get--oneliners-all-flagged :limit limit)
                (api:get--oneliners-all-flagged))))
      (cache-and-print-search-response response))))

(defun search-for-oneliners (terms limit not-flagged-p)
  (assert (loop for term in terms never (find #\, term) ))
  (ensure-config)
  (let ((response
          (api:request-with
              (:host (host))
            (api:get--oneliners :tags (str:join "," terms)
                                :limit limit
                                :notflagged (if not-flagged-p "true" "false")))))
    (cache-and-print-search-response response)))

;;; RUNNING THINGS IN THE SHELL.

(defun parent-process-name ()
  "Prints the name of the parent process of the current process."
  (let ((ppidfile (format nil "/proc/~a/status" (osicat-posix:getppid))))
    (first (last 
            (ppcre:split "\\s" 
                         (with-open-file (input ppidfile)
                           (read-line input)))))))

(defmacro wait-until ((&key (timeout 1) (poll-every 0.01)) &body check)
  "Run CHECK every POLL-EVERY seconds until either TIMEOUT seconds
have passed or CHECK returns non-nil."
  (let ((clockvar (gensym))
        (var (gensym)))
    `(loop
       for ,clockvar from 0 by ,poll-every to ,timeout
       for ,var = (progn ,@check)
       when ,var
         return ,var
       do (sleep ,poll-every)
       finally (return nil))))



(defun run-with-shell
    (command
     &key
       (shell-name (parent-process-name))
       (await-output-p *ol-output-timeout*)
       (output-stream *standard-output*))
  "run COMMAND, a string, in a fresh shell environment, initialized
with SHELL-NAME. The output from the command read line by line and is
printed to OUTPUT-STREAM. "
  (let ((shell
          (uiop:launch-program shell-name :input :stream :output :stream)))
    (symbol-macrolet ((shell-input (uiop:process-info-input shell))
                      (shell-output (uiop:process-info-output shell)))
      (write-line command shell-input)
      (finish-output shell-input)
      (if (and await-output-p
               (plusp await-output-p)
               (wait-until (:timeout await-output-p :poll-every 0.005)
                 (listen shell-output)))
          (loop while (listen shell-output)
                do (princ (read-line shell-output) output-stream)
                   (terpri output-stream))))))