This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import ComposableArchitecture | |
import LPGSharedModels | |
import BSON | |
import ComposableCoreLocation | |
import LocationReducer | |
import UserDefaultsClient | |
import SwiftUI | |
import NukeUI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public struct TabReducer: Reducer { | |
public enum Tab: Equatable { case swapToys, conversations, profile, settings } | |
public struct State: Equatable { | |
public var swaps: SwapsReducer.State | |
public var conversations: Conversations.State | |
public var profile: Profile.State | |
public var settings: Settings.State | |
public var isHidden = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public func swapsHandler( | |
request: Request, | |
route: SwapsRoute | |
) async throws -> AsyncResponseEncodable { | |
switch route { | |
case .create(input: let input): | |
if request.loggedIn == false { throw Abort(.unauthorized) } | |
let ownerID = request.payload.user._id | |
let title = input.name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public struct AttachmentS3Client { | |
public let bucket: String | |
public let bucketWithEndpoint: String | |
public let awsS3: S3 | |
private let awsClient: AWSClient | |
private let logger: Logger | |
public typealias UploadImageToS3Handler = @Sendable ( | |
UIImage, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ================================ | |
# Build image | |
# ================================ | |
FROM swift:5.9-jammy-slim | |
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \ | |
&& apt-get -q update \ | |
&& apt-get -q dist-upgrade -y \ | |
&& apt-get install -y libsqlite3-dev nano \ | |
&& rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import imaplib | |
import time | |
from enum import Enum | |
class ErrorType(Enum): | |
login_fail = 1 | |
not_connected = 2 | |
class EmailHandler: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ComposableArchitecture | |
import CoreLocation | |
import ComposableCoreLocation | |
import MapKit | |
import AddaSharedModels | |
extension String: LocalizedError { | |
public var errorDescription: String? { return self } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GRNValidRegExpression | |
: | |
"^[0-9][0-9][0-9][0-9]-(LLG|NVIZ)-([0-9]{4}|[0-9]{5})$" | |
NonUKVIToupVASEnabled | |
: | |
false | |
VisaTokenRegExpression | |
: | |
"^[a-zA-Z]{12}$" | |
additionalAllocationCode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Html | |
import Vapor | |
import VaporRouting | |
struct WebIndex { | |
var title: String | |
var rootRouter: RootRouterKey.Value | |
public init( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public func authenticationHandler( | |
request: Request, | |
route: AuthenticationRoute | |
) async throws -> AsyncResponseEncodable { | |
switch route { | |
case .loginViaEmailGet: | |
// original HTML https://stackblitz.com/edit/zbqcqg?file=index.html | |
return modalFormLogin() |