Skip to content

Commit

Permalink
T 1250801: Conduit library Enhance Security by Removing #file Usage (
Browse files Browse the repository at this point in the history
…#167)

* T 1250801: Conduit library Enhance Security by Removing `#file` Usage
  • Loading branch information
AnshulMindbody authored Sep 15, 2023
1 parent 5fa6640 commit 8485e1f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.0
// swift-tools-version:5.4
//
// Package.swift
// Conduit
Expand All @@ -23,6 +23,6 @@ let package = Package(
dependencies : [],
targets: [
.target(name: "Conduit", dependencies: []),
.testTarget(name: "ConduitTests", dependencies: ["Conduit"]),
.testTarget(name: "ConduitTests", dependencies: ["Conduit"], resources: [.process("Resources")]),
]
)
10 changes: 5 additions & 5 deletions Sources/Conduit/ConduitLogger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,23 +65,23 @@ public protocol ConduitLoggerType {
}

extension ConduitLoggerType {
func verbose(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #file, line: Int = #line) {
func verbose(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #fileID, line: Int = #line) {
log(block(), level: .verbose, function: function, filePath: filePath, line: line)
}

func debug(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #file, line: Int = #line) {
func debug(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #fileID, line: Int = #line) {
log(block(), level: .debug, function: function, filePath: filePath, line: line)
}

func info(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #file, line: Int = #line) {
func info(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #fileID, line: Int = #line) {
log(block(), level: .info, function: function, filePath: filePath, line: line)
}

func warn(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #file, line: Int = #line) {
func warn(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #fileID, line: Int = #line) {
log(block(), level: .warn, function: function, filePath: filePath, line: line)
}

func error(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #file, line: Int = #line) {
func error(_ block: @autoclosure () -> Any, function: String = #function, filePath: String = #fileID, line: Int = #line) {
log(block(), level: .error, function: function, filePath: filePath, line: line)
}

Expand Down
7 changes: 3 additions & 4 deletions Tests/ConduitTests/Resource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@ struct Resource {

var path: URL {
let filename: String = type.isEmpty ? name : "\(name).\(type)"
return URL(fileURLWithPath: #file)
.deletingLastPathComponent()
.appendingPathComponent("Resources")
.appendingPathComponent(filename)
let bundle = Bundle.module
let path = bundle.path(forResource: filename, ofType: nil) ?? ""
return URL(fileURLWithPath: path)
}
}

Expand Down

0 comments on commit 8485e1f

Please sign in to comment.