Skip to content

Commit db0194e

Browse files
committed
cli: implement history, init, order
Fixes #44 Implements CLI with multiple commands: * history * init * order Firstly to install the CLI: ```shell $ go get -u -v github.com/orijtech/uber/cmd/uber ``` Exhibits: * history: List your last 3 trips ```shell $ uber history --limit-per-page 3 --max-page 1 Page: #1 +--------+---------------+-------------------------+----------+-------+--------------------------------------+ | TRIP # | CITY | DATE | DURATION | MILES | REQUESTID | +--------+---------------+-------------------------+----------+-------+--------------------------------------+ | 1 | Denver | 2017/07/15 21:47:44 MDT | 7m31s | 3.211 | 8e7f479c-63e2-4ccc-babd-8671771485c3 | +--------+---------------+-------------------------+----------+-------+--------------------------------------+ | 2 | San Francisco | 2017/07/13 18:11:06 MDT | 14m16s | 3.694 | d521aed9-e9bc-4673-9109-25d9ce5c434c | +--------+---------------+-------------------------+----------+-------+--------------------------------------+ | 3 | London | 2017/06/25 16:17:43 MDT | 13m35s | 3.318 | 1ce3cccb-2e09-4920-ad80-d00a4645f9ce | +--------+---------------+-------------------------+----------+-------+--------------------------------------+ ``` * init init initializes the context and authorization for your Uber app in the current working directory ```shell $ go get -u -v github.com/orijtech/uber/cmd/uber $ uber init Please visit this URL for the auth dialog: https://login.uber.com/oauth/v2/authorize?access_type=offline&client_id=a_client_id&redirect_uri=https%3A%2F%2Fexample.org/uber&response_type=code&scope=profile+request+history+places+request_receipt+delivery&state=15004223370.604660 ``` which after successful authorization will give you a notice in your browser, to return to your terminal and will save the token to a file on disk, for example: ```shell Successfully saved your OAuth2.0 token to "/Users/orijtech/uber-account/.uber/credentials.json" ``` * order ```shell $ uber order Start Point: Redwood City Cinemark +--------+--------------------------------+-----------+-----------+-------------+ | CHOICE | NAME | RELEVANCE | LATITUDE | LONGITUDE | +--------+--------------------------------+-----------+-----------+-------------+ | 0 | Cinemark 20 Redwood City, | 98.70% | 37.485912 | -122.228752 | | | 825 Middlefield Rd, Redwood | | | | | | City, California 94063, United | | | | | | States | | | | +--------+--------------------------------+-----------+-----------+-------------+ | 1 | Redwood City, California, | 49.00% | 37.485199 | -122.236397 | | | United States | | | | +--------+--------------------------------+-----------+-----------+-------------+ | 2 | Redwood City Station, 805 | 39.00% | 37.485439 | -122.231796 | | | Veterans Blvd, Redwood City, | | | | | | California 94063, United | | | | | | States | | | | +--------+--------------------------------+-----------+-----------+-------------+ | 3 | Cinemark Ave, Markham, Ontario | 39.00% | 43.887989 | -79.225441 | | | L6B 1E3, Canada | | | | +--------+--------------------------------+-----------+-----------+-------------+ | 4 | Cinemark Ct, Mulberry, Florida | 39.00% | 27.934687 | -81.996933 | | | 33860, United States | | | | +--------+--------------------------------+-----------+-----------+-------------+ Please enter your choice by numeric key or (n) to search again: 0 End Point: Palo Alto +--------+--------------------------------+-----------+-----------+-------------+ | CHOICE | NAME | RELEVANCE | LATITUDE | LONGITUDE | +--------+--------------------------------+-----------+-----------+-------------+ | 0 | Palo Alto, California, United | 99.00% | 37.442200 | -122.163399 | | | States | | | | +--------+--------------------------------+-----------+-----------+-------------+ | 1 | Palo Alto Battlefield National | 99.00% | 26.021400 | -97.480598 | | | Historical Park, 7200 PAREDES | | | | | | LINE Rd, Los Fresnos, Texas | | | | | | 78566, United States | | | | +--------+--------------------------------+-----------+-----------+-------------+ | 2 | Palo Alto Baylands Nature | 99.00% | 37.459599 | -122.106003 | | | Preserve, 2500 Embarcadero | | | | | | Way, East Palo Alto, | | | | | | California 94303, United | | | | | | States | | | | +--------+--------------------------------+-----------+-----------+-------------+ | 3 | Palo Alto University, 1791 | 99.00% | 37.382301 | -122.188004 | | | Arastradero Rd, Palo Alto, | | | | | | California 94304, United | | | | | | States | | | | +--------+--------------------------------+-----------+-----------+-------------+ | 4 | Palo Alto High School, 50 | 99.00% | 37.437000 | -122.156998 | | | Embarcadero Rd, Palo Alto, | | | | | | California 94306, United | | | | | | States | | | | +--------+--------------------------------+-----------+-----------+-------------+ Please enter your choice by numeric key or (n) to search again: 0 Seat count: 1 or 2 (default 2) 1 +--------+--------+----------+----------+----------------------+--------------------+ | CHOICE | NAME | ESTIMATE | CURRENCY | PICKUP ETA (MINUTES) | DURATION (MINUTES) | +--------+--------+----------+----------+----------------------+--------------------+ | 0 | SELECT | $31-39 | USD | 3.0 | 22.0 | +--------+--------+----------+----------+----------------------+--------------------+ | 1 | ASSIST | $15-19 | USD | 10.0 | 22.0 | +--------+--------+----------+----------+----------------------+--------------------+ | 2 | uberXL | $19-24 | USD | 12.0 | 22.0 | +--------+--------+----------+----------+----------------------+--------------------+ | 3 | BLACK | $40-50 | USD | 5.0 | 22.0 | +--------+--------+----------+----------+----------------------+--------------------+ | 4 | SUV | $53-65 | USD | 5.0 | 22.0 | +--------+--------+----------+----------+----------------------+--------------------+ | 5 | WAV | $13-16 | USD | 0.0 | 22.0 | +--------+--------+----------+----------+----------------------+--------------------+ | 6 | POOL | $6-8 | USD | 9.0 | 22.0 | +--------+--------+----------+----------+----------------------+--------------------+ | 7 | uberX | $15-19 | USD | 8.0 | 22.0 | +--------+--------+----------+----------+----------------------+--------------------+ Please enter the choice of your item or n to cancel ```
1 parent 45b2deb commit db0194e

File tree

4 files changed

+471
-193
lines changed

4 files changed

+471
-193
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ _testmain.go
2626
# Text editor and miscellaneous files
2727
*.sw[op]
2828
*.DS_Store
29+
30+
# Binary directories
31+
bin/

README.md

+137-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
# uber
22
Uber API client in Go
33

4-
* Requirement:
4+
## Table of contents
5+
- [Requirements](#requirements)
6+
- [CLI](#cli)
7+
- [Installation](#installation)
8+
- [init](#init)
9+
- [history](#history)
10+
- [order](#order)
11+
- [SDK Usage](#sdk-usage)
12+
13+
## Requirements:
514
To use client v1, you'll need to set
615
+ `UBER_TOKEN_KEY`
716

8-
## CLI installation
9-
```go
10-
$ go get -u -v github.com/orijtech/uber/cmd/uber
11-
$ uber --order
12-
```
13-
1417
## SDK usage
1518
Sample usage: You can see file
1619
[example_test.go](./example_test.go)
@@ -420,3 +423,130 @@ func cancelDelivery() {
420423
}
421424
}
422425
```
426+
427+
## CLI
428+
### Installation
429+
```go
430+
$ go get -u -v github.com/orijtech/uber/cmd/uber
431+
```
432+
433+
### init
434+
init initializes the context and authorization for your Uber app in the current working directory
435+
436+
```shell
437+
$ go get -u -v github.com/orijtech/uber/cmd/uber
438+
$ uber init
439+
Please visit this URL for the auth dialog: https://login.uber.com/oauth/v2/authorize?access_type=offline&client_id=a_client_id&redirect_uri=https%3A%2F%2Fexample.org/uber&response_type=code&scope=profile+request+history+places+request_receipt+delivery&state=15004223370.604660
440+
```
441+
which after successful authorization will give you a notice in your browser, to return to
442+
your terminal and will save the token to a file on disk, for example:
443+
```shell
444+
Successfully saved your OAuth2.0 token to "/Users/orijtech/uber-account/.uber/credentials.json"
445+
```
446+
447+
From then on, for that Uber account, please go into that directory "/Users/orijtech/uber-account/"
448+
in order to use that account
449+
450+
### history
451+
history allows you to retrieve and examine your previous trips in a tabular form
452+
453+
```shell
454+
$ uber history -h
455+
```
456+
for all available options.
457+
458+
* List your last 3 trips
459+
```shell
460+
$ uber history --limit-per-page 3 --max-page 1
461+
462+
Page: #1
463+
+--------+---------------+-------------------------+----------+-------+--------------------------------------+
464+
| TRIP # | CITY | DATE | DURATION | MILES | REQUESTID |
465+
+--------+---------------+-------------------------+----------+-------+--------------------------------------+
466+
| 1 | Denver | 2017/07/15 21:47:44 MDT | 7m31s | 3.211 | 8e7f479c-63e2-4ccc-babd-8671771485c3 |
467+
+--------+---------------+-------------------------+----------+-------+--------------------------------------+
468+
| 2 | San Francisco | 2017/07/13 18:11:06 MDT | 14m16s | 3.694 | d521aed9-e9bc-4673-9109-25d9ce5c434c |
469+
+--------+---------------+-------------------------+----------+-------+--------------------------------------+
470+
| 3 | London | 2017/06/25 16:17:43 MDT | 13m35s | 3.318 | 1ce3cccb-2e09-4920-ad80-d00a4645f9ce |
471+
+--------+---------------+-------------------------+----------+-------+--------------------------------------+
472+
```
473+
474+
### order
475+
order allows you to order an Uber to any location and destination
476+
```shell
477+
$ uber order
478+
Start Point: Redwood City Cinemark
479+
+--------+--------------------------------+-----------+-----------+-------------+
480+
| CHOICE | NAME | RELEVANCE | LATITUDE | LONGITUDE |
481+
+--------+--------------------------------+-----------+-----------+-------------+
482+
| 0 | Cinemark 20 Redwood City, | 98.70% | 37.485912 | -122.228752 |
483+
| | 825 Middlefield Rd, Redwood | | | |
484+
| | City, California 94063, United | | | |
485+
| | States | | | |
486+
+--------+--------------------------------+-----------+-----------+-------------+
487+
| 1 | Redwood City, California, | 49.00% | 37.485199 | -122.236397 |
488+
| | United States | | | |
489+
+--------+--------------------------------+-----------+-----------+-------------+
490+
| 2 | Redwood City Station, 805 | 39.00% | 37.485439 | -122.231796 |
491+
| | Veterans Blvd, Redwood City, | | | |
492+
| | California 94063, United | | | |
493+
| | States | | | |
494+
+--------+--------------------------------+-----------+-----------+-------------+
495+
| 3 | Cinemark Ave, Markham, Ontario | 39.00% | 43.887989 | -79.225441 |
496+
| | L6B 1E3, Canada | | | |
497+
+--------+--------------------------------+-----------+-----------+-------------+
498+
| 4 | Cinemark Ct, Mulberry, Florida | 39.00% | 27.934687 | -81.996933 |
499+
| | 33860, United States | | | |
500+
+--------+--------------------------------+-----------+-----------+-------------+
501+
Please enter your choice by numeric key or (n) to search again: 0
502+
End Point: Palo Alto
503+
+--------+--------------------------------+-----------+-----------+-------------+
504+
| CHOICE | NAME | RELEVANCE | LATITUDE | LONGITUDE |
505+
+--------+--------------------------------+-----------+-----------+-------------+
506+
| 0 | Palo Alto, California, United | 99.00% | 37.442200 | -122.163399 |
507+
| | States | | | |
508+
+--------+--------------------------------+-----------+-----------+-------------+
509+
| 1 | Palo Alto Battlefield National | 99.00% | 26.021400 | -97.480598 |
510+
| | Historical Park, 7200 PAREDES | | | |
511+
| | LINE Rd, Los Fresnos, Texas | | | |
512+
| | 78566, United States | | | |
513+
+--------+--------------------------------+-----------+-----------+-------------+
514+
| 2 | Palo Alto Baylands Nature | 99.00% | 37.459599 | -122.106003 |
515+
| | Preserve, 2500 Embarcadero | | | |
516+
| | Way, East Palo Alto, | | | |
517+
| | California 94303, United | | | |
518+
| | States | | | |
519+
+--------+--------------------------------+-----------+-----------+-------------+
520+
| 3 | Palo Alto University, 1791 | 99.00% | 37.382301 | -122.188004 |
521+
| | Arastradero Rd, Palo Alto, | | | |
522+
| | California 94304, United | | | |
523+
| | States | | | |
524+
+--------+--------------------------------+-----------+-----------+-------------+
525+
| 4 | Palo Alto High School, 50 | 99.00% | 37.437000 | -122.156998 |
526+
| | Embarcadero Rd, Palo Alto, | | | |
527+
| | California 94306, United | | | |
528+
| | States | | | |
529+
+--------+--------------------------------+-----------+-----------+-------------+
530+
Please enter your choice by numeric key or (n) to search again: 0
531+
Seat count: 1 or 2 (default 2) 1
532+
+--------+--------+----------+----------+----------------------+--------------------+
533+
| CHOICE | NAME | ESTIMATE | CURRENCY | PICKUP ETA (MINUTES) | DURATION (MINUTES) |
534+
+--------+--------+----------+----------+----------------------+--------------------+
535+
| 0 | SELECT | $31-39 | USD | 3.0 | 22.0 |
536+
+--------+--------+----------+----------+----------------------+--------------------+
537+
| 1 | ASSIST | $15-19 | USD | 10.0 | 22.0 |
538+
+--------+--------+----------+----------+----------------------+--------------------+
539+
| 2 | uberXL | $19-24 | USD | 12.0 | 22.0 |
540+
+--------+--------+----------+----------+----------------------+--------------------+
541+
| 3 | BLACK | $40-50 | USD | 5.0 | 22.0 |
542+
+--------+--------+----------+----------+----------------------+--------------------+
543+
| 4 | SUV | $53-65 | USD | 5.0 | 22.0 |
544+
+--------+--------+----------+----------+----------------------+--------------------+
545+
| 5 | WAV | $13-16 | USD | 0.0 | 22.0 |
546+
+--------+--------+----------+----------+----------------------+--------------------+
547+
| 6 | POOL | $6-8 | USD | 9.0 | 22.0 |
548+
+--------+--------+----------+----------+----------------------+--------------------+
549+
| 7 | uberX | $15-19 | USD | 8.0 | 22.0 |
550+
+--------+--------+----------+----------+----------------------+--------------------+
551+
Please enter the choice of your item or n to cancel
552+
```

cmd/uber/Makefile

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Makefile for cross-compilation
2+
#
3+
OS := $(shell uname)
4+
BINDIR := ./bin
5+
MD5_TEXTFILE := $(BINDIR)/md5Sums.txt
6+
7+
MAIN_FILE_DIR := ./
8+
9+
ifeq ($(OS), Darwin)
10+
MD5_UTIL = md5
11+
else
12+
MD5_UTIL = md5sum
13+
endif
14+
15+
all: compileThemAll md5SumThemAll
16+
17+
compileThemAll: armv5 armv6 armv7 armv8 darwin linux
18+
19+
md5SumThemAll:
20+
rm -f $(MD5_TEXTFILE)
21+
find $(BINDIR) -type f -name "uber_*" -exec $(MD5_UTIL) {} >> $(MD5_TEXTFILE) \;
22+
cat $(MD5_TEXTFILE)
23+
24+
armv5:
25+
CGO_ENABLED=0 GOOS=linux GOARM=5 GOARCH=arm go build -o $(BINDIR)/uber_armv5 $(MAIN_FILE_DIR)
26+
armv6:
27+
CGO_ENABLED=0 GOOS=linux GOARM=6 GOARCH=arm go build -o $(BINDIR)/uber_armv6 $(MAIN_FILE_DIR)
28+
armv7:
29+
CGO_ENABLED=0 GOOS=linux GOARM=7 GOARCH=arm go build -o $(BINDIR)/uber_armv7 $(MAIN_FILE_DIR)
30+
armv8:
31+
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o $(BINDIR)/uber_armv8 $(MAIN_FILE_DIR)
32+
darwin:
33+
CGO_ENABLED=0 GOOS=darwin go build -o $(BINDIR)/uber_darwin $(MAIN_FILE_DIR)
34+
linux:
35+
CGO_ENABLED=0 GOOS=linux go build -o $(BINDIR)/uber_linux $(MAIN_FILE_DIR)

0 commit comments

Comments
 (0)