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
|
/*
* Copyright (C) 2009-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#if defined(TARGET_DARWIN_OSX)
#include "utils/URIUtils.h"
#include "platform/darwin/DarwinUtils.h"
#elif defined(TARGET_POSIX)
#else
#endif
#include "AliasShortcutUtils.h"
#include "utils/log.h"
bool IsAliasShortcut(const std::string& path, bool isdirectory)
{
bool rtn = false;
#if defined(TARGET_DARWIN_OSX)
// Note: regular files that have an .alias extension can be
// reported as an alias when clearly, they are not. Trap them out.
if (!URIUtils::HasExtension(path, ".alias"))//! @todo - check if this is still needed with the new API
{
rtn = CDarwinUtils::IsAliasShortcut(path, isdirectory);
}
#elif defined(TARGET_POSIX)
// Linux does not use alias or shortcut methods
#elif defined(TARGET_WINDOWS)
/* Needs testing under Windows platform so ignore shortcuts for now
if (CUtil::GetExtension(path) == ".lnk")
{
rtn = true;
}
*/
#endif
return(rtn);
}
void TranslateAliasShortcut(std::string& path)
{
#if defined(TARGET_DARWIN_OSX)
CDarwinUtils::TranslateAliasShortcut(path);
#elif defined(TARGET_POSIX)
// Linux does not use alias or shortcut methods
#elif defined(TARGET_WINDOWS_STORE)
// Win10 does not use alias or shortcut methods
CLog::Log(LOGDEBUG, "{} is not implemented", __FUNCTION__);
#elif defined(TARGET_WINDOWS)
/* Needs testing under Windows platform so ignore shortcuts for now
CComPtr<IShellLink> ipShellLink;
// Get a pointer to the IShellLink interface
if (NOERROR == CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (void**)&ipShellLink))
WCHAR wszTemp[MAX_PATH];
// Get a pointer to the IPersistFile interface
CComQIPtr<IPersistFile> ipPersistFile(ipShellLink);
// IPersistFile is using LPCOLESTR so make sure that the string is Unicode
#if !defined _UNICODE
MultiByteToWideChar(CP_ACP, 0, lpszShortcutPath, -1, wszTemp, MAX_PATH);
#else
wcsncpy(wszTemp, lpszShortcutPath, MAX_PATH);
#endif
// Open the shortcut file and initialize it from its contents
if (NOERROR == ipPersistFile->Load(wszTemp, STGM_READ))
{
// Try to find the target of a shortcut even if it has been moved or renamed
if (NOERROR == ipShellLink->Resolve(NULL, SLR_UPDATE))
{
WIN32_FIND_DATA wfd;
TCHAR real_path[PATH_MAX];
// Get the path to the shortcut target
if (NOERROR == ipShellLink->GetPath(real_path, MAX_PATH, &wfd, SLGP_RAWPATH))
{
// Get the description of the target
TCHAR szDesc[MAX_PATH];
if (NOERROR == ipShellLink->GetDescription(szDesc, MAX_PATH))
{
path = real_path;
}
}
}
}
}
*/
#endif
}
|