Class: Pindo::Command::Utils::Renewcert

Inherits:
Pindo::Command::Utils show all
Includes:
Appselect, Pindo::CertHelper, XcodeCertHelper
Defined in:
lib/pindo/command/utils/renewcert.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Pindo::CertHelper

clear_password_cache, clear_password_cache_for_url, get_cached_password, #get_cert_info, #install_certs, #install_provisionfiles, #isMac?, #is_cert_valid?, #select_cert_or_key

Methods included from XcodeCertHelper

#config_infoplist_cert, #config_project_cert, #create_provisioning_info_array, #create_upload_cert_info, #create_upload_provisioning_info, #get_target_name_map, #modify_entitlements_plist, #modify_info_plist_icloud

Methods included from Appselect

#all_dev_bundleid, #all_itc_bundleid, #all_release_bundleid, #all_tool_bundleid, #deploy_build_setting_json, #dev_build_setting_json, #get_deploy_repo_with_modul_name, #get_deploy_setting_repo, #get_dev_setting_repo, #get_selected_deploy_bundleid, #get_selected_dev_bundleid, #get_setting_bundleid_withdir, #load_setting, #select_main_app

Constructor Details

#initialize(argv) ⇒ Renewcert

Returns a new instance of Renewcert.



61
62
63
64
65
66
67
68
69
# File 'lib/pindo/command/utils/renewcert.rb', line 61

def initialize(argv)

  @fast_flag = argv.flag?('fast', false)
  @fixedid_flag = argv.flag?('fixedid', false)
  @upload_flag = argv.flag?('upload', false)
  @renew_cert_flag = argv.flag?('renew', false)
  super 

end

Class Method Details

.optionsObject



50
51
52
53
54
55
56
57
58
# File 'lib/pindo/command/utils/renewcert.rb', line 50

def self.options
  [

    ['--fast', '快速更新证书,开发用bundle id只更新dev证书,发布bundle id只更新adhoc证书'],
    ['--upload', '生成上传pgyer的证书'],
    ['--fixedid', '重新更新bundle id的功能,检查bundle id的功能是否更新'],
    ['--renew', '重新生成证书']
  ].concat(super)
end

Instance Method Details

#fixed_cert(bundle_id: nil, renew_flag: false, upload_flag: false, fixed_bundleid_flag: false) ⇒ Object



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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/pindo/command/utils/renewcert.rb', line 100

def fixed_cert(bundle_id:nil, renew_flag:false, upload_flag:false, fixed_bundleid_flag: false)

    args_temp = []
    args_temp << "#{bundle_id}"

    Pindo::Command::Deploy::Pullconfig::run(args_temp)

    if fixed_bundleid_flag
        Pindo::Command::Deploy::Bundleid::run([])    
    end

    if @fast_flag

        if @dev_bundle_id_array.include?(bundle_id) || @tool_bundle_id_array.include?(bundle_id)
            args_temp = []
            args_temp << "--a=#{bundle_id}"
            args_temp << "--dev"
            if renew_flag
                args_temp << "--renew"    
            end
            if upload_flag
                args_temp << "--upload"    
            end
            Pindo::Command::Deploy::Cert::run(args_temp)
        end

        if @deploy_bundle_id_array.include?(bundle_id)
            args_temp = []
            args_temp << "--a=#{bundle_id}"
            args_temp << "--adhoc"
            if renew_flag
                args_temp << "--renew"    
            end
            if upload_flag
                args_temp << "--upload"    
            end
            Pindo::Command::Deploy::Cert::run(args_temp)
        end

    else

        args_temp = []
        args_temp << "--a=#{bundle_id}"
        args_temp << "--dev"
        if renew_flag
            args_temp << "--renew"    
        end
        if upload_flag
            args_temp << "--upload"    
        end
        Pindo::Command::Deploy::Cert::run(args_temp)

        args_temp = []
        args_temp << "--a=#{bundle_id}"
        args_temp << "--adhoc"
        if renew_flag
            args_temp << "--renew"    
        end
        if upload_flag
            args_temp << "--upload"    
        end
        Pindo::Command::Deploy::Cert::run(args_temp)
    end
end

#fixed_push(bundle_id: nil, fixed_bundleid: false) ⇒ Object



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/pindo/command/utils/renewcert.rb', line 166

def fixed_push(bundle_id:nil, fixed_bundleid: false)
    
    Pindo::Command::Deploy::Pullconfig::run(args_temp)

    args_temp = []
    args_temp << "--a=#{bundle_id}"
    args_temp << "--dev"
    Pindo::Command::Deploy::Pem::run(args_temp)

    args_temp = []
    args_temp << "--a=#{bundle_id}"
    args_temp << "--adhoc"
    Pindo::Command::Deploy::Pem::run(args_temp)

end

#runObject



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
# File 'lib/pindo/command/utils/renewcert.rb', line 72

def run

    @dev_bundle_id_array = all_dev_bundleid()
    @tool_bundle_id_array = all_tool_bundleid() 
    @deploy_bundle_id_array = all_release_bundleid()
    fixed_bundleid_array = @dev_bundle_id_array + @deploy_bundle_id_array + @tool_bundle_id_array

    puts fixed_bundleid_array

    fixed_bundleid_array.each do |bundle_id|
        # begin
            if bundle_id.eql?("com.heroneverdie101.*")
                bundle_id = "com.heroneverdie101"
            end
          fixed_cert(bundle_id:bundle_id, renew_flag:@renew_cert_flag, upload_flag:@upload_flag, fixed_bundleid_flag:@fixedid_flag)
        # rescue => err
        #     puts 
        #     puts 
        #     puts "Fixed #{bundle_id} cert---------Error-------!!!"
        #     puts 
        #     puts 
        # end

    end

end