aboutsummaryrefslogblamecommitdiffstats
path: root/commands/msgview/open-link.go
blob: 00cc9314ae7d7d4b5bc14b76321e28c5b190f8ba (plain) (tree)
1
2
3
4
5
6
7
8
9


               

                 
 
                                    

                                         
                                        

 
                      
                                                                         
                                                 
 

             


                                     



                                                                 

                                                   





                                    
                                                   
                                                           

                                                            
                                                                     




                  

                                               


                          





                                                                
                   
                                        
                                                                                    
                                                                  



                  
package msgview

import (
	"fmt"
	"net/url"

	"git.sr.ht/~rjarry/aerc/app"
	"git.sr.ht/~rjarry/aerc/commands"
	"git.sr.ht/~rjarry/aerc/lib"
	"git.sr.ht/~rjarry/aerc/lib/log"
)

type OpenLink struct {
	Url *url.URL `opt:"url" action:"ParseUrl" complete:"CompleteUrl"`
	Cmd string   `opt:"..." required:"false"`
}

func init() {
	commands.Register(OpenLink{})
}

func (OpenLink) Description() string {
	return "Open the specified URL with an external program."
}

func (OpenLink) Context() commands.CommandContext {
	return commands.MESSAGE_VIEWER
}

func (OpenLink) Aliases() []string {
	return []string{"open-link"}
}

func (*OpenLink) CompleteUrl(arg string) []string {
	mv := app.SelectedTabContent().(*app.MessageViewer)
	if mv != nil {
		if p := mv.SelectedMessagePart(); p != nil {
			return commands.FilterList(p.Links, arg, nil)
		}
	}
	return nil
}

func (o *OpenLink) ParseUrl(arg string) error {
	u, err := url.Parse(arg)
	if err != nil {
		return err
	}
	o.Url = u
	return nil
}

func (o OpenLink) Execute(args []string) error {
	mime := fmt.Sprintf("x-scheme-handler/%s", o.Url.Scheme)
	go func() {
		defer log.PanicHandler()
		if err := lib.XDGOpenMime(o.Url.String(), mime, o.Cmd); err != nil {
			app.PushError("open-link: " + err.Error())
		}
	}()
	return nil
}