23
23
import java .lang .reflect .Constructor ;
24
24
import java .nio .file .Files ;
25
25
import java .nio .file .Path ;
26
- import java .util .HashMap ;
27
26
import java .util .List ;
28
27
import java .util .Locale ;
29
28
import java .util .Map ;
@@ -117,7 +116,7 @@ private void bootstrapDefaultConf() throws IOException {
117
116
"intended to be the default. Current 'solr.default.confdir' value:" ,
118
117
System .getProperty (SolrDispatchFilter .SOLR_DEFAULT_CONFDIR_ATTRIBUTE ));
119
118
} else {
120
- this .uploadConfig (ConfigSetsHandler .DEFAULT_CONFIGSET_NAME , configDirPath , true );
119
+ this .uploadConfig (ConfigSetsHandler .DEFAULT_CONFIGSET_NAME , configDirPath );
121
120
}
122
121
}
123
122
}
@@ -132,7 +131,7 @@ private void bootstrapConfDir(String confDir) throws IOException {
132
131
String confName =
133
132
System .getProperty (
134
133
ZkController .COLLECTION_PARAM_PREFIX + ZkController .CONFIGNAME_PROP , "configuration1" );
135
- this .uploadConfig (confName , configPath , true );
134
+ this .uploadConfig (confName , configPath );
136
135
}
137
136
138
137
/**
@@ -216,47 +215,10 @@ public static void bootstrapConf(CoreContainer cc) throws IOException {
216
215
if (StrUtils .isNullOrEmpty (confName )) confName = coreName ;
217
216
Path udir = cd .getInstanceDir ().resolve ("conf" );
218
217
log .info ("Uploading directory {} with name {} for solrCore {}" , udir , confName , coreName );
219
- cc .getConfigSetService ().uploadConfig (confName , udir , true );
218
+ cc .getConfigSetService ().uploadConfig (confName , udir );
220
219
}
221
220
}
222
221
223
- /**
224
- * Return whether the given configSet is trusted.
225
- *
226
- * @param name name of the configSet
227
- */
228
- public boolean isConfigSetTrusted (String name ) throws IOException {
229
- Map <String , Object > contentMap = getConfigMetadata (name );
230
- return (boolean ) contentMap .getOrDefault ("trusted" , true );
231
- }
232
-
233
- /**
234
- * Return whether the configSet used for the given resourceLoader is trusted.
235
- *
236
- * @param coreLoader resourceLoader for a core
237
- */
238
- public boolean isConfigSetTrusted (SolrResourceLoader coreLoader ) throws IOException {
239
- // ConfigSet flags are loaded from the metadata of the ZK node of the configset. (For the
240
- // ZKConfigSetService)
241
- NamedList <?> flags = loadConfigSetFlags (coreLoader );
242
-
243
- // Trust if there is no trusted flag (i.e. the ConfigSetApi was not used for this configSet)
244
- // or if the trusted flag is set to "true".
245
- return (flags == null || flags .get ("trusted" ) == null || flags .getBooleanArg ("trusted" ));
246
- }
247
-
248
- /**
249
- * Change the trust of the given configSet.
250
- *
251
- * @param name name of the configSet
252
- * @param isTrusted whether the given configSet should be trusted or not
253
- */
254
- public void setConfigSetTrust (String name , boolean isTrusted ) throws IOException {
255
- Map <String , Object > contentMap = new HashMap <>(getConfigMetadata (name ));
256
- contentMap .put ("trusted" , isTrusted );
257
- setConfigMetadata (name , contentMap );
258
- }
259
-
260
222
/**
261
223
* Load the ConfigSet for a core
262
224
*
@@ -270,7 +232,6 @@ public final ConfigSet loadConfigSet(CoreDescriptor dcore) {
270
232
try {
271
233
// ConfigSet properties are loaded from ConfigSetProperties.DEFAULT_FILENAME file.
272
234
NamedList <?> properties = loadConfigSetProperties (dcore , coreLoader );
273
- boolean trusted = isConfigSetTrusted (coreLoader );
274
235
275
236
SolrConfig solrConfig = createSolrConfig (dcore , coreLoader );
276
237
return new ConfigSet (
@@ -283,8 +244,7 @@ public final ConfigSet loadConfigSet(CoreDescriptor dcore) {
283
244
throw new SolrException (SolrException .ErrorCode .SERVER_ERROR , e .getMessage (), e );
284
245
}
285
246
},
286
- properties ,
287
- trusted );
247
+ properties );
288
248
} catch (Exception e ) {
289
249
throw new SolrException (
290
250
SolrException .ErrorCode .SERVER_ERROR ,
@@ -418,20 +378,7 @@ protected NamedList<Object> loadConfigSetFlags(SolrResourceLoader loader) throws
418
378
* @param dir {@link Path} to the files
419
379
* @throws IOException if an I/O error occurs or the path does not exist
420
380
*/
421
- protected abstract void uploadConfig (String configName , Path dir ) throws IOException ;
422
-
423
- /**
424
- * Upload files from a given path to config, which will explicitly be trusted or not.
425
- *
426
- * @param configName the config name
427
- * @param dir {@link Path} to the files
428
- * @param isTrusted whether the config being uploaded is trusted
429
- * @throws IOException if an I/O error occurs or the path does not exist
430
- */
431
- public void uploadConfig (String configName , Path dir , boolean isTrusted ) throws IOException {
432
- setConfigSetTrust (configName , isTrusted );
433
- uploadConfig (configName , dir );
434
- }
381
+ public abstract void uploadConfig (String configName , Path dir ) throws IOException ;
435
382
436
383
/**
437
384
* Upload a file to config If file does not exist, it will be uploaded If overwriteOnExists is set
@@ -507,22 +454,6 @@ public abstract void deleteFilesFromConfig(String configName, List<String> files
507
454
protected abstract void setConfigMetadata (String configName , Map <String , Object > data )
508
455
throws IOException ;
509
456
510
- /**
511
- * Set the config metadata If config does not exist, it will be created and set metadata on it
512
- * Else metadata will be replaced with the provided metadata. This will preserve the trust that
513
- * the configSet already has if trust is not included in the metadata.
514
- *
515
- * @param configName the config name
516
- * @param data the metadata to be set on config
517
- */
518
- public void setConfigMetadataWithTrust (String configName , Map <String , Object > data )
519
- throws IOException {
520
- if (!data .containsKey ("trusted" )) {
521
- data .put ("trusted" , isConfigSetTrusted (configName ));
522
- }
523
- setConfigMetadata (configName , data );
524
- }
525
-
526
457
/**
527
458
* Get the config metadata (mutable, non-null)
528
459
*
0 commit comments