|
| 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 |
0 commit comments