Skip to content

Commit e5b2a02

Browse files
committed
initial version
0 parents  commit e5b2a02

10 files changed

+277
-0
lines changed

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# gh-note
2+
An opinionated way of working with gists for note-taking.
3+
4+
## Things to do
5+
- Make folder for keeping local copies configurable.
6+
- Add `delete` command.
7+
- Add `status` command.
8+
- Add `--verbose` option to some commands.
9+
- Add `--all` option to `push`, `edit` and `view` commands. Paginate results.
10+
- Add automatic less paging support for `view` command.
11+
- Colorize `view` command file contents.
12+
- Clean up `main.rb` require code.
13+
14+
## Notes
15+
This might be useful to fetch token from `gh`:
16+
```
17+
gh config get -h github.com oauth_token
18+
```

app/cli.rb

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
class CLI < Thor
2+
desc 'view', 'View selected gist'
3+
def view
4+
gists = Gist.all
5+
gist = Search.new(gists).search
6+
View.new(gist).render
7+
end
8+
9+
desc 'create', 'Create an empty gist and open EDITOR. Then push on exit'
10+
def create
11+
gist = Gist.create!
12+
Editor.new(gist).launch
13+
end
14+
15+
desc 'edit', 'Edit selected gist locally'
16+
def edit
17+
gists = Gist.all
18+
gist = Search.new(gists).search
19+
Editor.new(gist).launch
20+
end
21+
22+
desc 'sync', 'Clone & pull remote gists'
23+
def sync
24+
gists = Gist.all
25+
Sync.new(gists).fetch!
26+
end
27+
28+
desc 'push', 'Push local changes'
29+
def push
30+
gists = Gist.all
31+
gist = Search.new(gists).search
32+
gist.push!
33+
end
34+
end

app/config.rb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Config
2+
def self.path
3+
File.join(Dir.home, 'gists')
4+
end
5+
end

app/editor.rb

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class Editor
2+
EDITOR = ENV['EDITOR']
3+
4+
attr_reader :gist
5+
6+
def initialize(gist)
7+
@gist = gist
8+
end
9+
10+
def launch(push_after_exit: true)
11+
system("cd #{cwd}; #{EDITOR} .")
12+
gist.push! if push_after_exit
13+
end
14+
15+
private
16+
17+
def cwd
18+
File.join(Config.path, gist.id)
19+
end
20+
end

app/gist.rb

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
require 'git'
2+
require 'json'
3+
require 'active_support/all'
4+
require 'colorize'
5+
6+
class Gist
7+
def self.all
8+
JSON.parse(`gh api https://api.github.com/gists`).map do |gist|
9+
Gist.new(gist)
10+
end
11+
end
12+
13+
def self.create!
14+
prompt = TTY::Prompt.new
15+
body = prompt.collect do
16+
key(:description).ask('Description:', required: true)
17+
18+
loop do
19+
key(:files).values do
20+
key(:name).ask('Filename:', required: true)
21+
end
22+
23+
break if prompt.no?('Add another file?')
24+
end
25+
end
26+
27+
body[:files] = body[:files].inject({}) do |memo, file|
28+
memo.merge!(file[:name] => {
29+
content: '# This file was generated by gh-note extension.'
30+
})
31+
memo
32+
end
33+
34+
json = `echo -e '#{body.to_json}' | gh api -X POST /gists --input -`
35+
gist = Gist.new(JSON.parse(json))
36+
gist.clone!
37+
gist
38+
rescue JSON::ParserError => e
39+
puts e
40+
puts json
41+
puts 'Error creating a gist'
42+
exit 1
43+
rescue Interrupt
44+
puts
45+
exit 130
46+
end
47+
48+
attr_reader :id, :pull_url, :push_url, :description
49+
50+
def initialize(api_json)
51+
@id = api_json['id']
52+
@push_url = api_json['git_push_url']
53+
@pull_url = api_json['git_pull_url']
54+
@description = api_json['description'].presence || api_json['files'].keys.join(' ')
55+
@last_updated = DateTime.parse(api_json['updated_at'])
56+
end
57+
58+
def clone!
59+
puts "Cloning from #{pull_url} into #{Config.path}" if
60+
Git.clone(pull_url, id, path: Config.path)
61+
end
62+
63+
def pull!
64+
puts "Pulling from #{pull_url} into #{Config.path}"
65+
66+
Git.open(File.join(Config.path, id)).pull
67+
end
68+
69+
def push!
70+
git = Git.open(File.join(Config.path, id))
71+
if needs_commit?(git)
72+
git.add(all: true)
73+
output = git.commit('Revision done by gh-note extension.')
74+
puts "Committing changes for #{id}." if output
75+
puts output
76+
end
77+
78+
puts "Pushing to #{push_url}"
79+
git.push
80+
end
81+
82+
def needs_commit?(git)
83+
status = Git::Status.new(git)
84+
85+
![status.untracked, status.changed].all?(&:blank?)
86+
end
87+
88+
def to_s
89+
days = (@last_updated...Date.current).count
90+
last_updated_text = "Last updated #{days.zero? ? 'today' : "#{days} days ago"}."
91+
"#{description} #{last_updated_text.light_black}"
92+
end
93+
end

app/search.rb

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
require 'tty-prompt'
2+
require_relative './config'
3+
4+
class Search
5+
attr_reader :prompt, :list
6+
7+
def initialize(list)
8+
@list = list
9+
@prompt = TTY::Prompt.new
10+
end
11+
12+
def search(label = '')
13+
prompt.select(label, list, filter: true, per_page: 20)
14+
rescue Interrupt
15+
puts
16+
exit 130
17+
end
18+
end

app/sync.rb

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
require 'fileutils'
2+
require_relative 'gist'
3+
4+
class Sync
5+
attr_reader :gists
6+
7+
def initialize(gists)
8+
@gists = gists
9+
end
10+
11+
def fetch!
12+
ensure_folder_exists
13+
14+
threads = []
15+
gists.each do |gist|
16+
threads << Thread.new do
17+
gist.clone!
18+
rescue Git::GitExecuteError
19+
gist.pull!
20+
end
21+
end
22+
23+
threads.each(&:join)
24+
puts 'Fetch and pull finished.'
25+
end
26+
27+
# TODO: keep for that push --all option
28+
# def push!
29+
# threads = []
30+
# gists.each do |gist|
31+
# threads << Thread.new do
32+
# gist.push!
33+
# rescue Git::GitExecuteError => e
34+
# puts e
35+
# end
36+
# end
37+
#
38+
# threads.each(&:join)
39+
# puts 'Push finished.'
40+
# end
41+
42+
def ensure_folder_exists
43+
FileUtils.mkdir_p(Config.path)
44+
end
45+
end

app/view.rb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
class View
3+
attr_reader :gist
4+
5+
def initialize(gist)
6+
@gist = gist
7+
end
8+
9+
def render
10+
system("gh gist view #{gist.id}")
11+
end
12+
end

gh-note

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
set -e
3+
4+
# Determine if an executable is in the PATH
5+
if ! type -p ruby >/dev/null; then
6+
echo "Ruby not found on the system" >&2
7+
exit 1
8+
fi
9+
10+
# Always run ruby relative to this scripts directory
11+
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
12+
cd "$parent_path"
13+
14+
ruby ./main.rb "$@"

main.rb

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
require 'bundler/inline'
2+
3+
gemfile do
4+
source 'https://rubygems.org'
5+
6+
gem 'json'
7+
gem 'git'
8+
gem 'tty-prompt'
9+
gem 'thor'
10+
gem 'activesupport'
11+
gem 'colorize'
12+
end
13+
14+
Dir[File.expand_path(File.join(File.dirname(File.absolute_path(__FILE__)), './app')) + "/**/*.rb"].each do |file|
15+
require file
16+
end
17+
18+
CLI.start

0 commit comments

Comments
 (0)