summaryrefslogtreecommitdiffstats
path: root/tdefile-plugins/lnk/lnkforward.cpp
blob: 5cf72dfde8658eaa4b96d60af054701e9c7d0d77 (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
/***************************************************************************
 *   Copyright (C) 2004 by Martin Koller                                   *
 *   m.koller@surfeu.at                                                    *
 *                                                                         *
 *   This helper app runs the associated action for a linked file inside a *
 *   M$-Windoze .lnk file, which is useful if you work in a mixed          *
 *   Linux/Windoze environment.                                            *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.             *
 ***************************************************************************/

#include "read_lnk.cpp"
#include "lnkforward.h"

#include <stdlib.h>

#include <tdelocale.h>
#include <krun.h>
#include <kdebug.h>

//--------------------------------------------------------------------------------

static const char appName[] = "lnkforward";
static const char programName[] = I18N_NOOP("lnkforward");

static const char description[] = I18N_NOOP("TDE tool for opening URLs given in a Windows .lnk file");

static const char version[] = "1.0";

static const TDECmdLineOptions options[] =
{
   { "map <drive=path>", I18N_NOOP("Map a Windows drive to a local mountpoint, e.g. \"C=/mnt/windows\""
                                   "\nThis option can be given multiple times"), 0},
   { "+URL", I18N_NOOP("Windows .lnk file to open"), 0},
   TDECmdLineLastOption
};

//--------------------------------------------------------------------------------

int main(int argc, char **argv)
{
  TDECmdLineArgs::init(argc, argv, appName, programName, description, version, false);

  TDECmdLineArgs::addCmdLineOptions(options);

  LNKForwarder app;

  return app.run(TDECmdLineArgs::parsedArgs());
}

//--------------------------------------------------------------------------------

int LNKForwarder::run(TDECmdLineArgs *args)
{
  if ( args->count() == 0 ) return 1;

  LNKInfo info;

  bool ret = readLNK(args->arg(0), info);
  if ( ! ret ) return 1;

  info.path.replace(TQChar('\\'), TQChar('/'));

  TQString path;

  if ( info.isNetworkPath )
  {
    path = "smb:" + info.path;
  }
  else
  {
    if ( info.driveName.isNull() ) return 1;  // can this ever happen ?

    QCStringList map = args->getOptionList("map");
    bool found = false;

    for (unsigned int i = 0; i < map.count(); i++)
    {
      if ( map[i].lower()[0] == info.driveName.lower()[0] )
      {
        if ( map[i].length() < 3 )
        {
          return 1;
        }
        path = map[i].mid(2);  // skip e.g. "C="
        found = true;
        break;
      }
    }

    if ( !found ) return 1;  // no mapped drive found

    path += '/';  // make sure that the dir ends with /
    path += info.path;
  }

  kdDebug(7034) << "running:" << path << endl;
  KRun * run = new KRun(path);
  TQObject::connect(run, TQT_SIGNAL(finished()), this, TQT_SLOT(delayedQuit()));
  TQObject::connect(run, TQT_SIGNAL(error()), this, TQT_SLOT(delayedQuit()));

  return exec();
}

//--------------------------------------------------------------------------------
// copied from kfmclient.cpp

void LNKForwarder::delayedQuit()
{
  // Quit in 2 seconds. This leaves time for KRun to pop up
  // "app not found" in TDEProcessRunner, if that was the case.
  TQTimer::singleShot(2000, this, TQT_SLOT(deref()));
}

//--------------------------------------------------------------------------------

#include "lnkforward.moc"