[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/magic-coder/Coding-iOS/master/Coding_iOS/Models/CodeFile.m [Back]  [Original]

//
//  CodeFile.m
//  Coding_iOS
//
//  Created by   on 14/10/29.
//  Copyright (c) 2014 Coding. All rights reserved.
//

#import "CodeFile.h"

@implementation CodeFile

+ (CodeFile *)codeFileWithRef:(NSString *)ref andPath:(NSString *)path{
    CodeFile *codeFile = [[CodeFile alloc] init];
    codeFile.ref = ref;
    codeFile.path = path;
    return codeFile;
}
+ (CodeFile *)codeFileWithMDStr:(NSString *)md_html{
    CodeFile *codeFile = [self codeFileWithRef:@"" andPath:@"README"];
    
    CodeFile_RealFile *file = [CodeFile_RealFile new];
    file.mode = @"file";
    file.lang = @"markdown";
    file.preview = md_html;
    
    codeFile.file = file;
    return codeFile;
}
+ (CodeFile *)codeFileToCommitWithRef:(NSString *)ref andPath:(NSString *)path name:(NSString *)name data:(NSString *)data message:(NSString *)message headCommit:(Commit *)headCommit{
    CodeFile *codeFile = [self codeFileWithRef:ref andPath:path];
    codeFile.editName = name;
    codeFile.editData = data;
    codeFile.editMessage = message;
    codeFile.headCommit = headCommit;
    return codeFile;
}

+ (CodeFile *)codeFileWithLocalURL:(NSURL *)localURL{
    CodeFile *codeFile = [self new];
    CodeFile_RealFile *file = [CodeFile_RealFile new];
    file.mode = @"file";
    NSStringEncoding enc;
    file.data = [NSString stringWithContentsOfURL:localURL usedEncoding:&enc error:nil];
    file.lang = localURL.ea_lang ?: @"";
    codeFile.file = file;
    return codeFile;
}

- (NSString *)path{
    if (!_path) {
        _path = @"";
    }
    return _path;
}
- (NSString *)ref{
    if (!_ref) {
        _ref = @"master";
    }
    return _ref;
}
- (NSString *)editData{
    if (!_editData) {
        _editData = _file.data.copy;
    }
    return _editData;
}
- (NSString *)editName{
    if (!_editName) {
        _editName = _file.name.copy;
    }
    return _editName;
}
- (NSString *)editMessage{
    if (!_editMessage) {
        _editMessage = [NSString stringWithFormat:@"update %@", _path];
    }
    return _editMessage;
}
- (NSDictionary *)toEditParams{
    NSMutableDictionary *params = @{}.mutableCopy;
    params[@"content"] = self.editData;
    params[@"message"] = self.editMessage;
    params[@"lastCommitSha"] = self.headCommit.commitId;
    return params;
}

- (NSDictionary *)toDeleteParams{
    NSMutableDictionary *params = @{}.mutableCopy;
    params[@"message"] = [NSString stringWithFormat:@"delete: %@", self.file.name];
    params[@"lastCommitSha"] = self.headCommit.commitId;
    return params;
}

- (NSDictionary *)toCreateParams{
    NSMutableDictionary *params = @{}.mutableCopy;
    params[@"title"] = self.editName;
    params[@"content"] = self.editData;
    params[@"message"] = self.editMessage;
    params[@"lastCommitSha"] = self.headCommit.commitId;
    return params;
}
@end


@implementation CodeFile_RealFile

@end

Web Proxy Viewer  |  New URL  |  Original Page